summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/client.c
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2006-10-31 15:23:41 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2006-10-31 15:23:41 +0000
commit6b639b79a75b1008f80dc46d346769d66ea5d9d9 (patch)
tree34a5d5efee320683eb1daff337b45250c9d9a20e /usr.bin/cvs/client.c
parent3448b5f8fe160f08b3a81478b57cc347464d6745 (diff)
a step ahead in opencvs add|remove remote support.
Diffstat (limited to 'usr.bin/cvs/client.c')
-rw-r--r--usr.bin/cvs/client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/client.c b/usr.bin/cvs/client.c
index 9989400bb7f..d28a6b9b5ca 100644
--- a/usr.bin/cvs/client.c
+++ b/usr.bin/cvs/client.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: client.c,v 1.14 2006/07/20 15:14:22 joris Exp $ */
+/* $OpenBSD: client.c,v 1.15 2006/10/31 15:23:40 xsa Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -76,8 +76,8 @@ struct cvs_req cvs_requests[] = {
{ "init", 0, NULL, 0 },
{ "update", 0, cvs_server_update, 0 },
{ "import", 0, NULL, 0 },
- { "add", 0, NULL, 0 },
- { "remove", 0, NULL, 0 },
+ { "add", 0, cvs_server_add, 0 },
+ { "remove", 0, cvs_server_remove, 0 },
{ "watch-on", 0, NULL, 0 },
{ "watch-off", 0, NULL, 0 },
{ "watch-add", 0, NULL, 0 },