Skip to content

Commit

Permalink
cvsserver: clean up client request handler map comments
Browse files Browse the repository at this point in the history
  - Comment that it should not be considered a complete list.
  - #'annotate' comment  - Uncommented annotate line is 2 lines earlier.

Signed-off-by: Matthew Ogilvie <mmogilvi_git@miniinfo.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Matthew Ogilvie authored and Junio C Hamano committed Oct 16, 2012
1 parent a86c098 commit 566c69e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion git-cvsserver.perl
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@

#### Definition and mappings of functions ####

# NOTE: Despite the existence of req_CATCHALL and req_EMPTY unimplemented
# requests, this list is incomplete. It is missing many rarer/optional
# requests. Perhaps some clients require a claim of support for
# these specific requests for main functionality to work?
my $methods = {
'Root' => \&req_Root,
'Valid-responses' => \&req_Validresponses,
Expand Down Expand Up @@ -80,7 +84,6 @@
'noop' => \&req_EMPTY,
'annotate' => \&req_annotate,
'Global_option' => \&req_Globaloption,
#'annotate' => \&req_CATCHALL,
};

##############################################
Expand Down

0 comments on commit 566c69e

Please sign in to comment.