]> git.sur5r.net Git - openldap/commitdiff
return the position of the failing verb
authorPierangelo Masarati <ando@openldap.org>
Mon, 14 Nov 2005 11:23:44 +0000 (11:23 +0000)
committerPierangelo Masarati <ando@openldap.org>
Mon, 14 Nov 2005 11:23:44 +0000 (11:23 +0000)
servers/slapd/config.c

index c20a76031f01dc270bee278530d40dc8822325ea..7669a89fccd219aaff3d527d028821800810cef0 100644 (file)
@@ -844,7 +844,7 @@ verbs_to_mask(int argc, char *argv[], slap_verbmasks *v, slap_mask_t *m) {
        int i, j;
        for(i = 1; i < argc; i++) {
                j = verb_to_mask(argv[i], v);
-               if(BER_BVISNULL(&v[j].word)) return(1);
+               if(BER_BVISNULL(&v[j].word)) return i;
                while (!v[j].mask) j--;
                *m |= v[j].mask;
        }