diff options
author | Volker Lendecke <vl@samba.org> | 2008-04-30 17:06:45 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-05-05 18:28:59 +0200 |
commit | dd11f1d8a89a5d5f20395ca6aea0bf32b7f273c4 (patch) | |
tree | 7920032ad1ac821eaa5166b2ae7e5966fbc91e7a /source3/auth | |
parent | 0636236eec5e73b08b28511ea6dc27d20aa35629 (diff) | |
download | samba-dd11f1d8a89a5d5f20395ca6aea0bf32b7f273c4.tar.gz samba-dd11f1d8a89a5d5f20395ca6aea0bf32b7f273c4.tar.bz2 samba-dd11f1d8a89a5d5f20395ca6aea0bf32b7f273c4.zip |
Remove unused set_current_user_guest()
(This used to be commit a33e8d2ffa4daea1deba13b3571cb0b36d521476)
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_util.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 7013285809..34d0048b4b 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -1246,39 +1246,6 @@ bool copy_current_user(struct current_user *dst, struct current_user *src) return True; } -bool set_current_user_guest(struct current_user *dst) -{ - gid_t *groups; - NT_USER_TOKEN *nt_token; - - groups = (gid_t *)memdup(guest_info->groups, - sizeof(gid_t) * guest_info->n_groups); - if (groups == NULL) { - return False; - } - - nt_token = dup_nt_token(NULL, guest_info->ptok); - if (nt_token == NULL) { - SAFE_FREE(groups); - return False; - } - - TALLOC_FREE(dst->nt_user_token); - SAFE_FREE(dst->ut.groups); - - /* dst->conn is never really dereferenced, it's only tested for - * equality in uid.c */ - dst->conn = NULL; - - dst->vuid = UID_FIELD_INVALID; - dst->ut.uid = guest_info->uid; - dst->ut.gid = guest_info->gid; - dst->ut.ngroups = guest_info->n_groups; - dst->ut.groups = groups; - dst->nt_user_token = nt_token; - return True; -} - /*************************************************************************** Purely internal function for make_server_info_info3 Fill the sam account from getpwnam |