]> git.sur5r.net Git - openldap/commitdiff
Use LDAP_VERSION3 instead of 3
authorKurt Zeilenga <kurt@openldap.org>
Fri, 13 Oct 2000 18:30:24 +0000 (18:30 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 13 Oct 2000 18:30:24 +0000 (18:30 +0000)
clients/tools/ldapmodify.c
clients/tools/ldappasswd.c
clients/tools/ldapsearch.c

index 2bb835a64e024741955d2575287384b4f76a59a9..50c05c4d01fcecb5f7dcb6439e292e50e976bde7 100644 (file)
@@ -600,7 +600,7 @@ main( int argc, char **argv )
 
 
        if (version == -1 ) {
-               version = 3;
+               version = LDAP_VERSION3;
        }
 
        if( ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &version )
index b0cdfb6dea4f8d95883831cfb412320d78be8b8e..ee5547d8ec0cee24630fb3c2a21f17afde02bf04 100644 (file)
@@ -591,7 +591,7 @@ main( int argc, char *argv[] )
        }
 
        /* LDAPv3 only */
-       version = 3;
+       version = LDAP_VERSION3;
        rc = ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &version );
 
        if(rc != LDAP_OPT_SUCCESS ) {
index c4432f67e99d0f8102e8e153c20ed10434f82993..786a4d803eba6696d72dd7445621c66945b07171 100644 (file)
@@ -723,7 +723,7 @@ main( int argc, char **argv )
        }
 
        if (version == -1 ) {
-               version = 3;
+               version = LDAP_VERSION3;
        }
 
        if( ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &version )