From: Junio C Hamano Date: Sun, 20 May 2007 00:53:45 +0000 (-0700) Subject: git-cvsserver: exit with 1 upon "I HATE YOU" X-Git-Tag: v1.5.2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e40a30452d3ab024b06238abab3968b872dd5e1c;p=git.git git-cvsserver: exit with 1 upon "I HATE YOU" Signed-off-by: Junio C Hamano --- diff --git a/git-cvsserver.perl b/git-cvsserver.perl index ac88625fc..fcfb99db6 100755 --- a/git-cvsserver.perl +++ b/git-cvsserver.perl @@ -105,7 +105,7 @@ if (@ARGV && $ARGV[0] eq 'pserver') { unless ($line eq 'anonymous') { print "E Only anonymous user allowed via pserver\n"; print "I HATE YOU\n"; - exit; + exit 1; } $line = ; chomp $line; # validate the password? $line = ; chomp $line;