diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-12-14 17:52:38 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-12-14 17:52:38 +0000 |
commit | cf921c2bb117bc30e70762b7c14a469ec1d7d41b (patch) | |
tree | d4635fc757b53c74c00ef99f2663d8390111ebd1 /usr.bin/cvs | |
parent | a8757107547bd4efea6f27b16241aff738baf135 (diff) |
missing `tag' request in the request table
from Joris Vink
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 0d37ab98a33..8aab14f2cbd 100644 --- a/usr.bin/cvs/proto.c +++ b/usr.bin/cvs/proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: proto.c,v 1.34 2004/12/08 19:28:10 jfb Exp $ */ +/* $OpenBSD: proto.c,v 1.35 2004/12/14 17:52:37 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -125,6 +125,7 @@ struct cvs_req cvs_requests[] = { { CVS_REQ_NOOP, "noop", CVS_REQF_RESP }, { CVS_REQ_DIFF, "diff", CVS_REQF_RESP }, { CVS_REQ_CI, "ci", CVS_REQF_RESP }, + { CVS_REQ_TAG, "tag", CVS_REQF_RESP }, }; struct cvs_resp cvs_responses[] = { |