diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-03-24 23:03:46 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-03-24 23:03:46 +0000 |
commit | 6d6f1c0522201792412b4618098536bcc45f4919 (patch) | |
tree | 9a35a31e8c33dcd93d1fc5531a50c1dc7eab35cb /source3/auth/auth_rhosts.c | |
parent | cdfe4b9b85441678067c37e438ed1c29ee5fa1cf (diff) | |
download | samba-6d6f1c0522201792412b4618098536bcc45f4919.tar.gz samba-6d6f1c0522201792412b4618098536bcc45f4919.tar.bz2 samba-6d6f1c0522201792412b4618098536bcc45f4919.zip |
- Add support to auth/ for the new modules system
- Quite some small fixes (also fixes the build)
(This used to be commit 3defbd5e0633acfa4631531b49601c7706072d86)
Diffstat (limited to 'source3/auth/auth_rhosts.c')
-rw-r--r-- | source3/auth/auth_rhosts.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/auth/auth_rhosts.c b/source3/auth/auth_rhosts.c index 5451f7d930..db37193579 100644 --- a/source3/auth/auth_rhosts.c +++ b/source3/auth/auth_rhosts.c @@ -242,3 +242,10 @@ NTSTATUS auth_init_rhosts(struct auth_context *auth_context, const char *param, (*auth_method)->name = "rhosts"; return NT_STATUS_OK; } + +int auth_rhosts_init(void) +{ + smb_register_auth("rhosts", auth_init_rhosts, AUTH_INTERFACE_VERSION); + smb_register_auth("hostsequiv", auth_init_hostsequiv, AUTH_INTERFACE_VERSION); + return True; +} |