From: Justin Erenkrantz Date: Tue, 2 Jul 2002 22:15:39 +0000 (+0000) Subject: found wasn't getting incremented when we update an exisiting record, thus X-Git-Tag: 2.0.40~331 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1977fb4db53a29da3783a1512045fb436bc97c8c;p=apache found wasn't getting incremented when we update an exisiting record, thus an additional new record was getting created. Submitted by: Thom May Reviewed by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95943 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/htpasswd.c b/support/htpasswd.c index ae7d76a05e..28f16bfa6a 100644 --- a/support/htpasswd.c +++ b/support/htpasswd.c @@ -593,6 +593,7 @@ int main(int argc, const char * const argv[]) */ apr_file_printf(errfile, "Updating "); putline(ftemp, record); + found++; } } }