summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/cmd.c
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2006-07-07 17:37:18 +0000
committerJoris Vink <joris@cvs.openbsd.org>2006-07-07 17:37:18 +0000
commit3b8d87766176c8c22119cca9b60143e0b8b842d3 (patch)
treea75735ef3dd068f9476605fc1b104c93f293d539 /usr.bin/cvs/cmd.c
parent0bc2e30232a85b2aea92a0a6a147bb29e7f9088e (diff)
first part of opencvs remote, fairly useable on existing trees
although i advise against using it on real development trees for now. only a few commands work right so far: - commit - diff - status - log - update (partially working) if you feel like testing remote and run into bugs feel free to contact me, and please include a full trace (-t).
Diffstat (limited to 'usr.bin/cvs/cmd.c')
-rw-r--r--usr.bin/cvs/cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/cmd.c b/usr.bin/cvs/cmd.c
index b6304e81fbf..2629892e0e0 100644
--- a/usr.bin/cvs/cmd.c
+++ b/usr.bin/cvs/cmd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd.c,v 1.51 2006/06/12 13:56:00 xsa Exp $ */
+/* $OpenBSD: cmd.c,v 1.52 2006/07/07 17:37:17 joris Exp $ */
/*
* Copyright (c) 2005 Joris Vink <joris@openbsd.org>
* All rights reserved.
@@ -44,6 +44,7 @@ struct cvs_cmd *cvs_cdt[] = {
&cvs_cmd_status,
&cvs_cmd_tag,
&cvs_cmd_update,
+ &cvs_cmd_server,
#if 0
&cvs_cmd_admin,
&cvs_cmd_annotate,
@@ -59,7 +60,6 @@ struct cvs_cmd *cvs_cdt[] = {
&cvs_cmd_release,
&cvs_cmd_rlog,
&cvs_cmd_rtag,
- &cvs_cmd_server,
&cvs_cmd_unedit,
&cvs_cmd_update,
&cvs_cmd_version,