]> git.sur5r.net Git - openldap/commitdiff
silence warnings
authorPierangelo Masarati <ando@openldap.org>
Fri, 16 Aug 2002 16:33:22 +0000 (16:33 +0000)
committerPierangelo Masarati <ando@openldap.org>
Fri, 16 Aug 2002 16:33:22 +0000 (16:33 +0000)
servers/slapd/sasl.c
servers/slapd/saslauthz.c

index 10dae31cd68285121f8e7ad44e49df38e9233978..31774cf445d92e4cc924e958260e5c73dbb58cab 100644 (file)
@@ -382,7 +382,7 @@ int slap_sasl_getdn( Connection *conn, char *id, int len,
                len = dn->bv_len + sizeof("uid=")-1 + sizeof(",cn=auth")-1;
 
                /* username may have embedded realm name */
-               if( realm = strchr( dn->bv_val, '@') ) {
+               if( ( realm = strchr( dn->bv_val, '@') ) ) {
                        *realm++ = '\0';
                        len += sizeof(",cn=")-2;
                } else if( user_realm && *user_realm ) {
index 82e68378b9897464dc80c1090ab54aac06f6cbf2..cbfff75d7aba1afb1e38a737b66a92a74a716b93 100644 (file)
@@ -286,7 +286,9 @@ static void slap_sasl_rx_exp(
 static int slap_sasl_regexp( struct berval *in, struct berval *out )
 {
        char *saslname = in->bv_val;
+#if 0
        char *scope[] = { "base", "one", "sub" };
+#endif
        SaslRegexp_t *reg;
        int i;
 
@@ -386,7 +388,7 @@ void slap_sasl2dn( Connection *conn,
        struct berval *saslname, struct berval *sasldn )
 {
        int rc;
-       Backend *be;
+       Backend *be = NULL;
        struct berval dn = { 0, NULL };
        int scope = LDAP_SCOPE_BASE;
        Filter *filter = NULL;