diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-07-22 17:55:36 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-07-22 17:55:36 +0000 |
commit | d4e4a60942ce23012a63ed81cf6ed40a8c5bf5ba (patch) | |
tree | 127366a3691422584b3ade9f3e964e14dc6b0d4b /usr.bin/cvs/req.c | |
parent | 5af7144e77ca7134a937e5d15ddb62a9a2a5a4f4 (diff) |
be sure we accept request for _all_ of our commands on the server side;
Diffstat (limited to 'usr.bin/cvs/req.c')
-rw-r--r-- | usr.bin/cvs/req.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/usr.bin/cvs/req.c b/usr.bin/cvs/req.c index 4b9aee369b9..4e8ee6eceb5 100644 --- a/usr.bin/cvs/req.c +++ b/usr.bin/cvs/req.c @@ -1,4 +1,4 @@ -/* $OpenBSD: req.c,v 1.26 2005/07/21 12:32:38 joris Exp $ */ +/* $OpenBSD: req.c,v 1.27 2005/07/22 17:55:35 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -121,25 +121,25 @@ struct cvs_reqhdlr { { NULL }, { cvs_req_command }, { cvs_req_command }, - { NULL }, /* 50 */ - { NULL }, - { NULL }, - { NULL }, + { cvs_req_command }, /* 50 */ + { cvs_req_command }, + { cvs_req_command }, + { cvs_req_command }, + { cvs_req_command }, + { cvs_req_command }, { cvs_req_command }, { cvs_req_command }, { cvs_req_command }, - { NULL }, - { NULL }, { cvs_req_command }, { cvs_req_command }, /* 60 */ { NULL }, { cvs_req_command }, { cvs_req_command }, { cvs_req_noop }, - { NULL }, - { NULL }, - { NULL }, - { NULL }, + { cvs_req_command }, + { cvs_req_command }, + { cvs_req_command }, + { cvs_req_command }, { cvs_req_command }, }; |