summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2013-08-05 10:46:47 +0200
committerStefan Metzmacher <metze@samba.org>2013-08-10 11:11:53 +0200
commit9177a0d1c1c92c45ef92fbda55fc6dd8aeb76b6c (patch)
tree8d95643563153eb29675423f9606c25ec43f4081 /source3/utils
parentf1e60142e12deb560e3c62441fd9ff2acd086b60 (diff)
downloadsamba-9177a0d1c1c92c45ef92fbda55fc6dd8aeb76b6c.tar.gz
samba-9177a0d1c1c92c45ef92fbda55fc6dd8aeb76b6c.tar.bz2
samba-9177a0d1c1c92c45ef92fbda55fc6dd8aeb76b6c.zip
libcli/auth: add more const to spnego_negTokenInit->mechTypes
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Sat Aug 10 11:11:54 CEST 2013 on sn-devel-104
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/ntlm_auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c
index 751f49cdc2..8d556298ca 100644
--- a/source3/utils/ntlm_auth.c
+++ b/source3/utils/ntlm_auth.c
@@ -2054,7 +2054,7 @@ static void manage_gss_spnego_client_request(enum stdio_helper_mode stdio_helper
/* The server offers a list of mechanisms */
- const char **mechType = (const char **)spnego.negTokenInit.mechTypes;
+ const char *const *mechType = spnego.negTokenInit.mechTypes;
while (*mechType != NULL) {