]> git.sur5r.net Git - openldap/commitdiff
Revert integer type change from rev 1.281 (ITS#5035) for now. It just
authorHallvard Furuseth <hallvard@openldap.org>
Mon, 23 Jul 2007 20:18:30 +0000 (20:18 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Mon, 23 Jul 2007 20:18:30 +0000 (20:18 +0000)
replaced one inttype bug with another, the proper fix is to change the API.

servers/slapd/bconfig.c

index a7d81d17c763d29208f31e29af8b74ba38826485..29b8ed3f574bbc9702937956e6ddab1e3ec7101c 100644 (file)
@@ -2446,8 +2446,7 @@ int
 slap_loglevel_get( struct berval *s, int *l )
 {
        int             rc;
-       unsigned        i;
-       slap_mask_t     m;
+       slap_mask_t     m, i;
 
        if ( loglevel_ops == NULL ) {
                loglevel_init();
@@ -2467,7 +2466,7 @@ slap_loglevel_get( struct berval *s, int *l )
        rc = slap_verbmasks_append( &loglevel_ops, i, s, loglevel_ignore );
 
        if ( rc != 0 ) {
-               Debug( LDAP_DEBUG_ANY, "slap_loglevel_get(%u, \"%s\") failed\n",
+               Debug( LDAP_DEBUG_ANY, "slap_loglevel_get(%lu, \"%s\") failed\n",
                        i, s->bv_val, 0 );
 
        } else {