diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-02 11:17:06 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:18 -0500 |
commit | acc9f59c7f3bdaa5be20f7c46e9e1a9eaa21192a (patch) | |
tree | 44f01da4b6c5f1cf07e87437c8d456c4e0915418 /source4/auth/auth_builtin.c | |
parent | c5e4c834648fd7639d9024f15f4e4f8163340581 (diff) | |
download | samba-acc9f59c7f3bdaa5be20f7c46e9e1a9eaa21192a.tar.gz samba-acc9f59c7f3bdaa5be20f7c46e9e1a9eaa21192a.tar.bz2 samba-acc9f59c7f3bdaa5be20f7c46e9e1a9eaa21192a.zip |
r3476: fixed some const warnings
(This used to be commit 7dc58dc01e19b342df76dcc14ee28ff37a8f9ace)
Diffstat (limited to 'source4/auth/auth_builtin.c')
-rw-r--r-- | source4/auth/auth_builtin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/auth/auth_builtin.c b/source4/auth/auth_builtin.c index 611552e903..c67b9b6835 100644 --- a/source4/auth/auth_builtin.c +++ b/source4/auth/auth_builtin.c @@ -44,7 +44,8 @@ static NTSTATUS check_guest_security(const struct auth_context *auth_context, if (!(user_info->internal_username.str && *user_info->internal_username.str)) { - nt_status = make_server_info_guest(auth_context, server_info); + nt_status = make_server_info_guest(discard_const(auth_context), + server_info); } return nt_status; |