Return-Path: Delivered-To: apache-cvs-archive@hyperreal.org Received: (qmail 27600 invoked by uid 6000); 18 May 1998 11:24:24 -0000 Received: (qmail 27594 invoked by alias); 18 May 1998 11:24:23 -0000 Delivered-To: apache-1.3-cvs@hyperreal.org Received: (qmail 27592 invoked by uid 168); 18 May 1998 11:24:22 -0000 Date: 18 May 1998 11:24:22 -0000 Message-ID: <19980518112422.27591.qmail@hyperreal.org> From: rse@hyperreal.org To: apache-1.3-cvs@hyperreal.org Subject: cvs commit: apache-1.3/src/support dbmmanage Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org rse 98/05/18 04:24:22 Modified: src CHANGES src/support dbmmanage Log: Fix support script `dbmmanage': It was unable to handle some sort of passwords, especially passwords with "0" chars. PR: 2242 Revision Changes Path 1.851 +4 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.850 retrieving revision 1.851 diff -u -r1.850 -r1.851 --- CHANGES 1998/05/16 21:11:15 1.850 +++ CHANGES 1998/05/18 11:24:19 1.851 @@ -1,5 +1,9 @@ Changes with Apache 1.3b7 + *) Fix support script `dbmmanage': It was unable to handle some sort + of passwords, especially passwords with "0" chars. + [Ralf S. Engelschall] PR#2242 + *) WIN32: Clicking on "Last Modified" in a fancy index caused a crash. Fixed. [Ben Laurie] PR#2238 1.11 +1 -1 apache-1.3/src/support/dbmmanage Index: dbmmanage =================================================================== RCS file: /export/home/cvs/apache-1.3/src/support/dbmmanage,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- dbmmanage 1998/03/31 12:53:47 1.10 +++ dbmmanage 1998/05/18 11:24:21 1.11 @@ -134,7 +134,7 @@ my($c,$pwd); print STDERR $prompt; - while ($c = getc(STDIN) and $c ne "\n" and $c ne "\r") { + while (($c = getc(STDIN)) ne '' and $c ne "\n" and $c ne "\r") { $pwd .= $c; }