summaryrefslogtreecommitdiff
path: root/usr.bin/cvs
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2005-07-04 07:11:11 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2005-07-04 07:11:11 +0000
commitf59a49f3623312b4791787c2f95864208f4a5155 (patch)
tree34d97445ff7c2a73cddfb05dbd208cad66e0f6e8 /usr.bin/cvs
parent7a15b2046e4bbaa5a34cbaf592e81541080e3923 (diff)
enable all commands; ok joris@.
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r--usr.bin/cvs/Makefile6
-rw-r--r--usr.bin/cvs/cmd.c8
2 files changed, 4 insertions, 10 deletions
diff --git a/usr.bin/cvs/Makefile b/usr.bin/cvs/Makefile
index 5ad57d0e31d..b400abf1848 100644
--- a/usr.bin/cvs/Makefile
+++ b/usr.bin/cvs/Makefile
@@ -1,13 +1,13 @@
-# $OpenBSD: Makefile,v 1.10 2005/06/09 01:10:00 joris Exp $
+# $OpenBSD: Makefile,v 1.11 2005/07/04 07:11:10 xsa Exp $
PROG= cvs
MAN= cvs.1 cvsrc.5 cvsintro.7
SRCS= cvs.c add.c admin.c annotate.c buf.c checkout.c cmd.c commit.c date.y \
- diff.c entries.c file.c getlog.c history.c hist.c \
+ diff.c edit.c entries.c file.c getlog.c history.c hist.c \
import.c init.c log.c logmsg.c proto.c rcs.c rcsnum.c release.c \
remove.c req.c resp.c root.c server.c status.c strtab.c tag.c \
- update.c util.c version.c
+ update.c util.c version.c watch.c
BINDIR= /usr/bin
BINOWN= root
diff --git a/usr.bin/cvs/cmd.c b/usr.bin/cvs/cmd.c
index d3cb95245bd..a9cbc1082e1 100644
--- a/usr.bin/cvs/cmd.c
+++ b/usr.bin/cvs/cmd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd.c,v 1.26 2005/06/14 15:27:31 joris Exp $ */
+/* $OpenBSD: cmd.c,v 1.27 2005/07/04 07:11:10 xsa Exp $ */
/*
* Copyright (c) 2005 Joris Vink <joris@openbsd.org>
* All rights reserved.
@@ -58,11 +58,9 @@ struct cvs_cmd *cvs_cdt[] = {
&cvs_cmd_checkout,
&cvs_cmd_commit,
&cvs_cmd_diff,
-#if 0
&cvs_cmd_edit,
&cvs_cmd_editors,
&cvs_cmd_export,
-#endif
&cvs_cmd_history,
&cvs_cmd_import,
&cvs_cmd_init,
@@ -82,15 +80,11 @@ struct cvs_cmd *cvs_cdt[] = {
&cvs_cmd_server,
&cvs_cmd_status,
&cvs_cmd_tag,
-#if 0
&cvs_cmd_unedit,
-#endif
&cvs_cmd_update,
&cvs_cmd_version,
-#if 0
&cvs_cmd_watch,
&cvs_cmd_watchers,
-#endif
NULL
};