summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/server.c
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2006-12-19 11:46:40 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2006-12-19 11:46:40 +0000
commit830b3da8bcd9664623a1ec0266ad5375f12054ee (patch)
tree1ed7840fc79add9d5af20511d842e64d40e09b45 /usr.bin/cvs/server.c
parent10f0fbacbf47f76338f2fe5572c63c96da5bb222 (diff)
add client-side support for Clear-static-directory, Clear-sticky and
Set-sticky requests. Set-sticky needs more work though.
Diffstat (limited to 'usr.bin/cvs/server.c')
-rw-r--r--usr.bin/cvs/server.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/cvs/server.c b/usr.bin/cvs/server.c
index f8ffcf288e3..89eda3b169c 100644
--- a/usr.bin/cvs/server.c
+++ b/usr.bin/cvs/server.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: server.c,v 1.44 2006/12/15 13:12:14 xsa Exp $ */
+/* $OpenBSD: server.c,v 1.45 2006/12/19 11:46:39 xsa Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -34,6 +34,9 @@ struct cvs_resp cvs_responses[] = {
{ "Merged", 0, cvs_client_merged, RESP_NEEDED },
{ "Removed", 0, cvs_client_removed, RESP_NEEDED },
{ "Remove-entry", 0, cvs_client_remove_entry, RESP_NEEDED },
+ { "Clear-static-directory", 0, cvs_client_clear_static_directory, RESP_NEEDED },
+ { "Set-sticky", 0, cvs_client_set_sticky, RESP_NEEDED },
+ { "Clear-sticky", 0, cvs_client_clear_sticky, RESP_NEEDED },
/* unsupported responses until told otherwise */
{ "New-entry", 0, NULL, 0 },
@@ -46,9 +49,6 @@ struct cvs_resp cvs_responses[] = {
{ "Checksum", 0, NULL, 0 },
{ "Copy-file", 0, NULL, 0 },
{ "Set-static-directory", 0, NULL, 0 },
- { "Clear-static-directory", 0, NULL, 0 },
- { "Set-sticky", 0, NULL, 0 },
- { "Clear-sticky", 0, NULL, 0 },
{ "Template", 0, NULL, 0 },
{ "Set-checkin-prog", 0, NULL, 0 },
{ "Set-update-prog", 0, NULL, 0 },