diff options
author | 2005-07-22 17:55:35 +0000 | |
---|---|---|
committer | 2005-07-22 17:55:35 +0000 | |
commit | a6c1fe78b52650e56f4677ae21057126cbd8adf7 (patch) | |
tree | 98d4ac8bbfe83d72406ad623e49bc420bdf51cb0 | |
parent | Comandate Che Guevara, with a single `m'. (diff) | |
download | wireguard-openbsd-a6c1fe78b52650e56f4677ae21057126cbd8adf7.tar.xz wireguard-openbsd-a6c1fe78b52650e56f4677ae21057126cbd8adf7.zip |
be sure we accept request for _all_ of our commands on the server side;
-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 }, }; |