From: Hallvard Furuseth Date: Wed, 9 Jan 2008 20:25:51 +0000 (+0000) Subject: Remove uninitialized variable since last change X-Git-Tag: OPENLDAP_REL_ENG_2_4_9~20^2~228 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f2470930317cc36e792b875c434f63b0bf03088b;p=openldap Remove uninitialized variable since last change --- diff --git a/clients/tools/ldapmodify.c b/clients/tools/ldapmodify.c index 28ea4090c1..558cdb6bbf 100644 --- a/clients/tools/ldapmodify.c +++ b/clients/tools/ldapmodify.c @@ -402,7 +402,7 @@ static int process_ldif_rec( char *rbuf, int linenum ) { char *line, *dn, *newrdn, *newsup; - int rc, modop, replicaport; + int rc, modop; int expect_modop, expect_sep; int deleteoldrdn; int new_entry, delete_entry, got_all;