From e481b1d8db9947681a5c124545ef06951f42155d Mon Sep 17 00:00:00 2001 From: Clemens Buchacher Date: Thu, 17 Sep 2009 09:21:02 +0200 Subject: [PATCH] cvs: initialize empty password If we do not read a password from the command line, and there are no passwords stored in .cvspass, we have to initialize the password with just "A". This fixes a regression introduced by 3fb9d582 (Do not scramble password read from .cvspass). Signed-off-by: Clemens Buchacher Signed-off-by: Junio C Hamano --- git-cvsimport.perl | 1 + 1 file changed, 1 insertion(+) diff --git a/git-cvsimport.perl b/git-cvsimport.perl index d7411151dd..1ad20ac964 100755 --- a/git-cvsimport.perl +++ b/git-cvsimport.perl @@ -253,6 +253,7 @@ sub conn { } } }; + $pass = "A" unless $pass; } my ($s, $rep); -- 2.11.4.GIT