]> git.sur5r.net Git - openldap/commitdiff
Remove old kruft.
authorKurt Zeilenga <kurt@openldap.org>
Wed, 26 Jul 2000 17:23:07 +0000 (17:23 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 26 Jul 2000 17:23:07 +0000 (17:23 +0000)
servers/slapd/tools/slapindex.c

index a41af24b359710f4eae6f63ae8e3406e8e495c2e..867e244cbd4d2b9bc12e3b8a4d28caa895c7c634 100644 (file)
@@ -19,9 +19,6 @@
 int
 main( int argc, char **argv )
 {
-       char            *type;
-       AttributeDescription *desc;
-       const char *text;
        ID id;
        int rc = EXIT_SUCCESS;
 
@@ -38,16 +35,6 @@ main( int argc, char **argv )
                exit( EXIT_FAILURE );
        }
 
-       type = argv[argc - 1];
-
-       rc = slap_str2ad( type, &desc, &text );
-
-       if( rc != LDAP_SUCCESS ) {
-               fprintf( stderr, "%s: unrecognized attribute type: %s\n",
-                       progname, text );
-               exit( EXIT_FAILURE );
-       }
-
        if( be->be_entry_open( be, 0 ) != 0 ) {
                fprintf( stderr, "%s: could not open database.\n",
                        progname );
@@ -76,6 +63,5 @@ main( int argc, char **argv )
        (void) be->be_entry_close( be );
 
        slap_tool_destroy();
-
        return( rc );
 }