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 2008-07-16 13:35:46 +02:00 committed by Junio C Hamano
parent 8bd867ee0e
commit df4b3abc94
1 changed files with 1 additions and 1 deletions

View File

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

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

print "ok\n";