]> git.sur5r.net Git - openldap/commitdiff
Fix prev commit
authorQuanah Gibson-Mount <quanah@openldap.org>
Fri, 16 Apr 2010 22:03:04 +0000 (22:03 +0000)
committerQuanah Gibson-Mount <quanah@openldap.org>
Fri, 16 Apr 2010 22:03:04 +0000 (22:03 +0000)
servers/slapd/config.c
servers/slapd/slap.h

index c18ed041fd028971b2904ba996515969f8e8eba3..6cec953681ec67ea3ae1fe518f7fe96eef45e90e 100644 (file)
@@ -1441,20 +1441,6 @@ slap_cf_aux_table_parse( const char *word, void *dst, slap_cf_aux_table *tab0, L
                                rc = lutil_atoulx( ulptr, val, 0 );
                                break;
 
-                       case 'x':
-                               if ( tab->aux != NULL ) {
-                                       struct berval value;
-                                       slap_cf_aux_table_parse_x *func = (slap_cf_aux_table_parse_x *)tab->aux;
-
-                                       ber_str2bv( val, 0, 1, &value );
-
-                                       rc = func( &value, (void *)((char *)dst + tab->off), tab, tabmsg, 0 );
-
-                               } else {
-                                       rc = 1;
-                               }
-                               break;
-
                        case 'x':
                                if ( tab->aux != NULL ) {
                                        struct berval value;
index 0c02b00d116b877571e8d157ef125434f47082b4..12ed166cce2bc3541001d7cbd03809403d8da06f 100644 (file)
@@ -1642,14 +1642,6 @@ typedef struct slap_cf_aux_table {
        void *aux;
 } slap_cf_aux_table;
 
-typedef int 
-slap_cf_aux_table_parse_x LDAP_P((
-       struct berval *val,
-       void *bc,
-       slap_cf_aux_table *tab0,
-       const char *tabmsg,
-       int unparse ));
-
 typedef int 
 slap_cf_aux_table_parse_x LDAP_P((
        struct berval *val,