summaryrefslogtreecommitdiff
path: root/source3/auth/auth.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2003-04-30 23:06:44 +0000
committerJelmer Vernooij <jelmer@samba.org>2003-04-30 23:06:44 +0000
commitd2373e7dce03a933be465cfd006c20d2bcc6e758 (patch)
treed254cd94f4b60e92704043980313ff1a89b69ed8 /source3/auth/auth.c
parent5a6138082024d17eedab317038e8969c9f536530 (diff)
downloadsamba-d2373e7dce03a933be465cfd006c20d2bcc6e758.tar.gz
samba-d2373e7dce03a933be465cfd006c20d2bcc6e758.tar.bz2
samba-d2373e7dce03a933be465cfd006c20d2bcc6e758.zip
Make the version numbers ints (patch from metze)
(This used to be commit dbe36b4c43dceddea9f14161c6cf7b34709287c8)
Diffstat (limited to 'source3/auth/auth.c')
-rw-r--r--source3/auth/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth.c b/source3/auth/auth.c
index 8f718e3d4d..cec15da1f6 100644
--- a/source3/auth/auth.c
+++ b/source3/auth/auth.c
@@ -27,7 +27,7 @@ static struct auth_init_function_entry *backends = NULL;
static struct auth_init_function_entry *auth_find_backend_entry(const char *name);
-NTSTATUS smb_register_auth(uint16 version, const char *name, auth_init_function init)
+NTSTATUS smb_register_auth(int version, const char *name, auth_init_function init)
{
struct auth_init_function_entry *entry = backends;