]> git.sur5r.net Git - openldap/commitdiff
Warning cleanup: signed meets unsigned.
authorHallvard Furuseth <hallvard@openldap.org>
Mon, 13 Oct 2008 08:19:13 +0000 (08:19 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Mon, 13 Oct 2008 08:19:13 +0000 (08:19 +0000)
servers/slapd/slapi/slapi_pblock.c
servers/slapd/slapi/slapi_utils.c

index 1a5d6584ba3ea584fbb2f6a51269f4bf2938ea4f..0bbd91f406d6583ee4caf3166f76f7c7d1d950eb 100644 (file)
@@ -396,7 +396,7 @@ static int
 pblock_set_default( Slapi_PBlock *pb, int param, void *value ) 
 {
        slapi_pblock_class_t pbClass;
-       size_t i;
+       int i;
 
        pbClass = pblock_get_param_class( param );
        if ( pbClass == PBLOCK_CLASS_INVALID ) {
index 8c9910b162e1a6b2c5a1fae49572f3ac49b15239..06768345c396cf824a9ecdbc4836aba582d6425e 100644 (file)
@@ -52,7 +52,7 @@ struct slapi_condvar {
 
 static int checkBVString(const struct berval *bv)
 {
-       int i;
+       ber_len_t i;
 
        for ( i = 0; i < bv->bv_len; i++ ) {
                if ( bv->bv_val[i] == '\0' )
@@ -3231,7 +3231,7 @@ LDAP *slapi_ldap_init( char *ldaphost, int ldapport, int secure, int shared )
                rc = snprintf( url, size, "ldap%s://%s/", ( secure ? "s" : "" ), ldaphost );
        }
 
-       if ( rc > 0 && rc < size ) {
+       if ( rc > 0 && (size_t) rc < size ) {
                rc = ldap_initialize( &ld, url );
        } else {
                ld = NULL;