From b464a790b8839375e7f33010cf592d9cbbebd481 Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Fri, 17 Oct 2008 20:46:44 +0000 Subject: [PATCH] Fix Debug(%d, scred->bv_len or -1) -> Debug(%ld, (long) scred->bv_len or -1L). Cast sasl_encode() arg from unsigned char* to char*. Warning cleanup: signed meets unsigned. --- libraries/libldap/cyrus.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/libldap/cyrus.c b/libraries/libldap/cyrus.c index 0aee1c8a68..aad8f8ed88 100644 --- a/libraries/libldap/cyrus.c +++ b/libraries/libldap/cyrus.c @@ -162,7 +162,7 @@ sb_sasl_cyrus_encode( ber_int_t ret; unsigned tmpsize = dst->buf_size; - ret = sasl_encode( sasl_context, buf, len, + ret = sasl_encode( sasl_context, (char *)buf, len, (SASL_CONST char **)&dst->buf_base, &tmpsize ); @@ -556,7 +556,7 @@ ldap_int_sasl_bind( /* and server provided us with data? */ Debug( LDAP_DEBUG_TRACE, "ldap_int_sasl_bind: rc=%d sasl=%d len=%ld\n", - rc, saslrc, scred ? scred->bv_len : -1 ); + rc, saslrc, scred ? (long) scred->bv_len : -1L ); ber_bvfree( scred ); scred = NULL; } @@ -840,7 +840,7 @@ int ldap_pvt_sasl_secprops( const char *in, sasl_security_properties_t *secprops ) { - int i, j, l; + unsigned i, j, l; char **props; unsigned sflags = 0; int got_sflags = 0; -- 2.39.5