]> git.sur5r.net Git - openldap/commitdiff
Fix shadowing bug created from previous change.
authorKurt Zeilenga <kurt@openldap.org>
Thu, 20 Aug 1998 18:40:45 +0000 (18:40 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Thu, 20 Aug 1998 18:40:45 +0000 (18:40 +0000)
servers/slapd/charray.c

index 4737408cae0ae22e76a76c76524069d34aa98728..f3a888826ce4b922d99f0ca31102aade8f16fa59 100644 (file)
@@ -114,7 +114,7 @@ str2charray( char *str, char *brkstr )
        int     i;
 
        /* protect the input string from strtok */
-       char *str = strdup( str );
+       str = strdup( str );
 
        i = 1;
        for ( s = str; *s; s++ ) {