diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-12-15 13:12:15 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-12-15 13:12:15 +0000 |
commit | 2f75ad8de9714874983eb01b7942e138e9c2897c (patch) | |
tree | d28f0c045fdc18b6038b0f2f66f4a254a04c3706 /usr.bin/cvs/client.c | |
parent | c35d95343a1970fcfcb3562f72c6670846b810ae (diff) |
dummy support for update-patches request.
Diffstat (limited to 'usr.bin/cvs/client.c')
-rw-r--r-- | usr.bin/cvs/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/client.c b/usr.bin/cvs/client.c index a603b8d6458..8de9f59bee7 100644 --- a/usr.bin/cvs/client.c +++ b/usr.bin/cvs/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.32 2006/12/15 09:50:37 xsa Exp $ */ +/* $OpenBSD: client.c,v 1.33 2006/12/15 13:12:14 xsa Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -68,7 +68,7 @@ struct cvs_req cvs_requests[] = { { "rlog", 0, NULL, 0 }, { "add", 0, cvs_server_add, 0 }, { "remove", 0, cvs_server_remove, 0 }, - { "update-patches", 0, NULL, 0 }, + { "update-patches", 0, cvs_server_update_patches, 0 }, { "gzip-file-contents", 0, NULL, 0 }, { "status", 0, cvs_server_status, 0 }, { "rdiff", 0, NULL, 0 }, |