diff options
author | Tim Potter <tpot@samba.org> | 2000-12-12 05:29:47 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-12-12 05:29:47 +0000 |
commit | 806185ca8cc8d28f16745a1db9427f52eb8d22e4 (patch) | |
tree | 1bfa95b0821e7945813d0b9839f9de0cc2235673 /source/smbd | |
parent | 9e9c71c8b3194b7cd02fea0b6a000d4f2940d905 (diff) | |
download | samba-806185ca8cc8d28f16745a1db9427f52eb8d22e4.tar.gz samba-806185ca8cc8d28f16745a1db9427f52eb8d22e4.tar.xz samba-806185ca8cc8d28f16745a1db9427f52eb8d22e4.zip |
Compile fix for new arg to create_nt_token()
Diffstat (limited to 'source/smbd')
-rw-r--r-- | source/smbd/service.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/smbd/service.c b/source/smbd/service.c index 2dbb2c0d17e..0713c0e49d2 100644 --- a/source/smbd/service.c +++ b/source/smbd/service.c @@ -468,7 +468,9 @@ connection_struct *make_connection(char *service,char *user,char *password, int return NULL; } - conn->nt_user_token = create_nt_token(conn->uid, conn->gid, conn->ngroups, conn->groups); + conn->nt_user_token = create_nt_token(conn->uid, conn->gid, + conn->ngroups, conn->groups, + guest); /* Initialise VFS function pointers */ |