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 | 90a7d7d3d7e77ed1f33e2bb9969beef7aa464712 (patch) | |
tree | 445dd152fa2a96bd3a8b412f6fafe354c50f10b3 /source3/smbd | |
parent | 20ac3fc77e9423ab13a2cc1a2ef3d266f5b233e0 (diff) | |
download | samba-90a7d7d3d7e77ed1f33e2bb9969beef7aa464712.tar.gz samba-90a7d7d3d7e77ed1f33e2bb9969beef7aa464712.tar.bz2 samba-90a7d7d3d7e77ed1f33e2bb9969beef7aa464712.zip |
Compile fix for new arg to create_nt_token()
(This used to be commit 806185ca8cc8d28f16745a1db9427f52eb8d22e4)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/service.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c index 2dbb2c0d17..0713c0e49d 100644 --- a/source3/smbd/service.c +++ b/source3/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 */ |