]> git.sur5r.net Git - openldap/commitdiff
ITS#3847 silence warnings
authorHoward Chu <hyc@openldap.org>
Mon, 11 Jul 2005 10:39:32 +0000 (10:39 +0000)
committerHoward Chu <hyc@openldap.org>
Mon, 11 Jul 2005 10:39:32 +0000 (10:39 +0000)
libraries/libldap/cyrus.c
libraries/libldap/groupings.c
libraries/libldap/ppolicy.c
libraries/libldap/util-int.c
libraries/libldap_r/tpool.c
libraries/liblutil/passwd.c

index 553d39faa99dc5e4f6813735c96c50788aa1c1a2..df4ee9ed582930108e41e2684f80c8494862b56c 100644 (file)
@@ -207,7 +207,7 @@ sb_sasl_pkt_length( const unsigned char *buf, int debuglevel )
                | buf[1] << 16
                | buf[2] << 8
                | buf[3];
-   
+
        if ( size > SASL_MAX_BUFF_SIZE ) {
                /* somebody is trying to mess me up. */
                ber_log_printf( LDAP_DEBUG_ANY, debuglevel,
@@ -895,7 +895,7 @@ void ldap_pvt_sasl_secprops_unparse(
        comma = 0;
        for ( i=0; !BER_BVISNULL( &sprops[i].key ); i++ ) {
                if ( sprops[i].ival ) {
-                       int v;
+                       int v = 0;
 
                        switch( sprops[i].ival ) {
                        case GOT_MINSSF: v = secprops->min_ssf; break;
@@ -928,7 +928,7 @@ void ldap_pvt_sasl_secprops_unparse(
        comma = 0;
        for ( i=0; !BER_BVISNULL( &sprops[i].key ); i++ ) {
                if ( sprops[i].ival ) {
-                       int v;
+                       int v = 0;
 
                        switch( sprops[i].ival ) {
                        case GOT_MINSSF: v = secprops->min_ssf; break;
index 24a655d7ff2187489e3f0acc2eb336356c1ea19f..fe768f17acad689313c30966293974d7363c14a3 100644 (file)
@@ -127,6 +127,7 @@ int ldap_grouping_end(
        LDAPControl **cctrls,
        int *msgidp )
 {
+       return 0;
 }
 
 int ldap_grouping_end_s(
@@ -137,6 +138,7 @@ int ldap_grouping_end_s(
        LDAPControl **cctrls,
        struct berval **retgrpdatap )
 {
+       return 0;
 }
 
 #endif
index d730f93cdf9352cdd2761b69a9a9d0f24ed0819c..bf427d4b39498790302016e5eaa82e71f5333e31 100644 (file)
@@ -130,7 +130,7 @@ ldap_parse_passwordpolicy_control(
         LDAPPasswordPolicyError *errorp )
 {
        BerElement  *ber;
-       int i, exp = -1, grace = -1;
+       int exp = -1, grace = -1;
        ber_tag_t tag;
        ber_len_t berLen;
         char *last;
index 407d13628d4c7f6266ce45a95dbf408ecb64620d..326fbf9693e4a5d545f832dd9f37f5d0af12db9b 100644 (file)
@@ -463,7 +463,7 @@ static int copy_hostent(
        int     n_alias=0;
        int     total_alias_len=0;
        int     n_addr=0;
-       int     total_addr_len;
+       int     total_addr_len=0;
        int     total_len;
          
        /* calculate the size needed for the buffer */
index 0148df89fc3cc4dea12262bf7bab2457a2fbc958..04a71b645c710a9c67a9c0b9c4836f4a6989fdbb 100644 (file)
@@ -222,7 +222,6 @@ ldap_pvt_thread_pool_submit (
        if (ctx) {
                LDAP_SLIST_REMOVE_HEAD(&pool->ltp_free_list, ltc_next.l);
        } else {
-               int i;
                ctx = (ldap_int_thread_ctx_t *) LDAP_MALLOC(
                        sizeof(ldap_int_thread_ctx_t));
                if (ctx == NULL) {
index a152279a5f0bb12790a120fdc9d3e0994c7bcd9c..9aabb86a85903db063b3663eb366b9d90c92f84c 100644 (file)
@@ -778,9 +778,7 @@ static int chk_crypt(
        const struct berval * cred,
        const char **text )
 {
-       char *cr;
        unsigned int i;
-       int rc;
 
        for( i=0; i<cred->bv_len; i++) {
                if(cred->bv_val[i] == '\0') {
@@ -817,7 +815,7 @@ static int chk_unix(
        const char **text )
 {
        unsigned int i;
-       char *pw,*cr;
+       char *pw;
 
        for( i=0; i<cred->bv_len; i++) {
                if(cred->bv_val[i] == '\0') {