summaryrefslogtreecommitdiffstats
path: root/source3/auth/token_util.c
diff options
context:
space:
mode:
authorGarming Sam <garming@catalyst.net.nz>2014-02-03 15:22:13 +1300
committerJeremy Allison <jra@samba.org>2014-02-07 16:19:10 -0800
commite23c7adb1a5f23aa3b688e76888c778e12368320 (patch)
treecd20729b64ed76381bbf7958bd0e1bd63a2bb6e4 /source3/auth/token_util.c
parent7c0f3ea1304293fd1505706e597eebb640d224e3 (diff)
downloadsamba-e23c7adb1a5f23aa3b688e76888c778e12368320.tar.gz
samba-e23c7adb1a5f23aa3b688e76888c778e12368320.tar.xz
samba-e23c7adb1a5f23aa3b688e76888c778e12368320.zip
param: rename lp function and variable from 'guestaccount' to 'guest_account'
Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/auth/token_util.c')
-rw-r--r--source3/auth/token_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/token_util.c b/source3/auth/token_util.c
index d86d589cc3d..936846c16fa 100644
--- a/source3/auth/token_util.c
+++ b/source3/auth/token_util.c
@@ -619,7 +619,7 @@ static NTSTATUS create_token_from_sid(TALLOC_CTX *mem_ctx,
/*
* If the SID from lookup_name() was the guest sid, passdb knows
- * about the mapping of guest sid to lp_guestaccount()
+ * about the mapping of guest sid to lp_guest_account()
* username and will return the unix_pw info for a guest
* user. Use it if it's there, else lookup the *uid details
* using Get_Pwnam_alloc(). See bug #6291 for details. JRA.