Warning fixes from Christos Zoulas
- shadowed variables - signed/unsigned confusion - const lossage - incomplete structure initializations - unused code
This commit is contained in:
		| @@ -39,13 +39,12 @@ | ||||
|  *  negotiation token is identified by the Object Identifier | ||||
|  *  iso.org.dod.internet.security.mechanism.snego (1.3.6.1.5.5.2). | ||||
|  */ | ||||
|  | ||||
| static gss_mo_desc spnego_mo[] = { | ||||
|     { | ||||
| 	GSS_C_MA_SASL_MECH_NAME, | ||||
| 	GSS_MO_MA, | ||||
| 	"SASL mech name", | ||||
| 	"SPNEGO", | ||||
| 	rk_UNCONST("SPNEGO"), | ||||
| 	_gss_mo_get_ctx_as_string, | ||||
| 	NULL | ||||
|     }, | ||||
| @@ -53,7 +52,7 @@ static gss_mo_desc spnego_mo[] = { | ||||
| 	GSS_C_MA_MECH_NAME, | ||||
| 	GSS_MO_MA, | ||||
| 	"Mechanism name", | ||||
| 	"SPNEGO", | ||||
| 	rk_UNCONST("SPNEGO"), | ||||
| 	_gss_mo_get_ctx_as_string, | ||||
| 	NULL | ||||
|     }, | ||||
| @@ -61,7 +60,7 @@ static gss_mo_desc spnego_mo[] = { | ||||
| 	GSS_C_MA_MECH_DESCRIPTION, | ||||
| 	GSS_MO_MA, | ||||
| 	"Mechanism description", | ||||
| 	"Heimdal SPNEGO Mechanism", | ||||
| 	rk_UNCONST("Heimdal SPNEGO Mechanism"), | ||||
| 	_gss_mo_get_ctx_as_string, | ||||
| 	NULL | ||||
|     }, | ||||
| @@ -78,7 +77,7 @@ static gss_mo_desc spnego_mo[] = { | ||||
| static gssapi_mech_interface_desc spnego_mech = { | ||||
|     GMI_VERSION, | ||||
|     "spnego", | ||||
|     {6, (void *)"\x2b\x06\x01\x05\x05\x02"}, | ||||
|     {6, rk_UNCONST("\x2b\x06\x01\x05\x05\x02") }, | ||||
|     0, | ||||
|     _gss_spnego_acquire_cred, | ||||
|     _gss_spnego_release_cred, | ||||
| @@ -128,7 +127,13 @@ static gssapi_mech_interface_desc spnego_mech = { | ||||
|     NULL, | ||||
|     NULL, | ||||
|     spnego_mo, | ||||
|     sizeof(spnego_mo) / sizeof(spnego_mo[0]) | ||||
|     sizeof(spnego_mo) / sizeof(spnego_mo[0]), | ||||
|     NULL, | ||||
|     NULL, | ||||
|     NULL, | ||||
|     NULL, | ||||
|     NULL, | ||||
|     NULL, | ||||
| }; | ||||
|  | ||||
| gssapi_mech_interface | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Love Hornquist Astrand
					Love Hornquist Astrand