diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-12-14 19:11:55 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-12-14 19:11:55 +0000 |
commit | d3f8e3b34854dfc894f68ffecfb52d51eb933544 (patch) | |
tree | 9348e886c76ec2d4e42ac4902aae9ba4f53044f8 /usr.bin/cvs/cvs.c | |
parent | 206d0ad233511fb9358f9077aa0032fe99ab11d4 (diff) |
support the tag command
from Joris Vink
Diffstat (limited to 'usr.bin/cvs/cvs.c')
-rw-r--r-- | usr.bin/cvs/cvs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index fad19b7b74e..57ea74d7c58 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.21 2004/12/13 16:10:30 xsa Exp $ */ +/* $OpenBSD: cvs.c,v 1.22 2004/12/14 19:11:54 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -256,7 +256,7 @@ static struct cvs_cmd { NULL, }, { - CVS_OP_TAG, "tag", { "ta", "freeze" }, NULL, + CVS_OP_TAG, "tag", { "ta", "freeze" }, cvs_tag, "", "", "Add a symbolic tag to checked out version of files", |