From: Johannes Schindelin Date: Tue, 25 Jul 2006 10:48:52 +0000 (+0200) Subject: cvsserver: suppress warnings X-Git-Tag: v1.4.2-rc2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=42217f13efcfd7901636877f020de246d6c58838;p=git.git cvsserver: suppress warnings This patch defines $state->{prependdir} as the empty string, so that quite a few warnings are avoided. Signed-off-by: Johannes Schindelin Acked-by: Martin Langhoff Signed-off-by: Junio C Hamano --- diff --git a/git-cvsserver.perl b/git-cvsserver.perl index c30ef7042..4bfca1f93 100755 --- a/git-cvsserver.perl +++ b/git-cvsserver.perl @@ -81,7 +81,7 @@ my $methods = { # $state holds all the bits of information the clients sends us that could # potentially be useful when it comes to actually _doing_ something. -my $state = {}; +my $state = { prependdir => '' }; $log->info("--------------- STARTING -----------------"); my $TEMP_DIR = tempdir( CLEANUP => 1 );