This is an automated email from the git hooks/post-receive script.
simo pushed a commit to branch master
in repository gssproxy.
commit eeaa36e4ea3a0284ce970545e1d808c0a26e10f5
Author: Robbie Harwood <rharwood(a)redhat.com>
Date: Mon Sep 19 21:41:08 2016 +0000
Fix type of argument to gppint_get_def_creds()
Some compilers don't like GSS_C_NO_NAME as a generic NULL value.
Signed-off-by: Robbie Harwood <rharwood(a)redhat.com>
Reviewed-by: Simo Sorce <simo(a)redhat.com>
---
proxy/src/mechglue/gpp_init_sec_context.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/proxy/src/mechglue/gpp_init_sec_context.c
b/proxy/src/mechglue/gpp_init_sec_context.c
index 2327b58..7b10400 100644
--- a/proxy/src/mechglue/gpp_init_sec_context.c
+++ b/proxy/src/mechglue/gpp_init_sec_context.c
@@ -156,7 +156,7 @@ OM_uint32 gssi_init_sec_context(OM_uint32 *minor_status,
maj = gppint_get_def_creds(&min,
GPP_REMOTE_ONLY,
- GSS_C_NO_NAME,
+ NULL,
GSS_C_INITIATE,
&r_creds);
if (maj == GSS_S_COMPLETE) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.