summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Popela <tpopela@redhat.com>2015-10-20 16:00:24 +0200
committerTomas Popela <tpopela@redhat.com>2015-10-20 16:11:11 +0200
commit99abd9baf2df12c08af5b05df516262193f19d15 (patch)
tree7de16b8fafa792e66b892489bd42c9ac512cc773
parentf1044d6e2d3c5f48c500a8670d025a4125b0dbdc (diff)
downloadevolution-data-server-99abd9baf2df12c08af5b05df516262193f19d15.tar.gz
Avoid the compile warning when initializing SPNEGO' gss_OID_desc structure
-rw-r--r--camel/camel-sasl-gssapi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-sasl-gssapi.c b/camel/camel-sasl-gssapi.c
index 5d88cdc60..b1f919d85 100644
--- a/camel/camel-sasl-gssapi.c
+++ b/camel/camel-sasl-gssapi.c
@@ -78,8 +78,8 @@ extern gss_OID gss_nt_service_name;
static const char spnego_OID[] = "\x2b\x06\x01\x05\x05\x02";
static const gss_OID_desc gss_mech_spnego = {
- 6,
- &spnego_OID
+ 6,
+ (gpointer) &spnego_OID
};
#ifndef GSS_C_OID_KRBV5_DES