Browse Source

git-cvsserver: fix call to nonexistant cleanupWorkDir()

git-cvsserver.perl contained a single call to a nonexistant function
cleanupWorkDir(). This was obviously a typo for cleanupWorkTree().

Signed-off-by: Lars Noschinski <lars@public.noschinski.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Lars Noschinski 17 years ago committed by Junio C Hamano
parent
commit
df4b3abc94
  1. 2
      git-cvsserver.perl

2
git-cvsserver.perl

@ -1884,7 +1884,7 @@ sub req_annotate @@ -1884,7 +1884,7 @@ sub req_annotate
}

# done; get out of the tempdir
cleanupWorkDir();
cleanupWorkTree();

print "ok\n";


Loading…
Cancel
Save