Skip to content

Commit

Permalink
git-cvsserver: fix call to nonexistant cleanupWorkDir()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Lars Noschinski authored and Junio C Hamano committed Jul 16, 2008
1 parent 8bd867e commit df4b3ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-cvsserver.perl
Original file line number Diff line number Diff line change
Expand Up @@ -1884,7 +1884,7 @@ sub req_annotate
}

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

print "ok\n";

Expand Down

0 comments on commit df4b3ab

Please sign in to comment.