diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-03-04 18:36:58 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-03-04 18:36:58 +0000 |
commit | d4c94b4d1ed6cdb7994508bc1d8cbd31476061d5 (patch) | |
tree | 3d26d1a72f9244fc01d90f0656cf463c25219ab5 /usr.bin/cvs | |
parent | a92982abeff08c0e49fc1093ab25803eb7fc2584 (diff) |
add missing 'add' request in cvs_request table.
ok jfb@
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/proto.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/proto.c b/usr.bin/cvs/proto.c index 74cba257e07..9bcbf581505 100644 --- a/usr.bin/cvs/proto.c +++ b/usr.bin/cvs/proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: proto.c,v 1.40 2005/02/04 18:16:40 jfb Exp $ */ +/* $OpenBSD: proto.c,v 1.41 2005/03/04 18:36:57 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -115,6 +115,7 @@ struct cvs_req cvs_requests[] = { { CVS_REQ_DIFF, "diff", CVS_REQF_RESP }, { CVS_REQ_CI, "ci", CVS_REQF_RESP }, { CVS_REQ_TAG, "tag", CVS_REQF_RESP }, + { CVS_REQ_ADMIN, "admin", CVS_REQF_RESP }, }; struct cvs_resp cvs_responses[] = { |