diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-11-13 12:57:04 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-11-13 12:57:04 +0000 |
commit | 319bfc74f9ef4e39342cd183f879eb3569cf014d (patch) | |
tree | 43078ce3cb9f362a9109bb1927584c5c8cf1a6ed /usr.bin/cvs/cmd.c | |
parent | b0f6777667b42ea8fd2b4b2a22960608c7b167ab (diff) |
Add server-side bits for admin command.
Diffstat (limited to 'usr.bin/cvs/cmd.c')
-rw-r--r-- | usr.bin/cvs/cmd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/cmd.c b/usr.bin/cvs/cmd.c index 2629892e0e0..fbd1696b316 100644 --- a/usr.bin/cvs/cmd.c +++ b/usr.bin/cvs/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.52 2006/07/07 17:37:17 joris Exp $ */ +/* $OpenBSD: cmd.c,v 1.53 2006/11/13 12:57:03 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -33,6 +33,7 @@ extern char *cvs_rootstr; struct cvs_cmd *cvs_cdt[] = { &cvs_cmd_add, + &cvs_cmd_admin, &cvs_cmd_commit, &cvs_cmd_checkout, &cvs_cmd_diff, @@ -41,12 +42,11 @@ struct cvs_cmd *cvs_cdt[] = { &cvs_cmd_init, &cvs_cmd_log, &cvs_cmd_remove, + &cvs_cmd_server, &cvs_cmd_status, &cvs_cmd_tag, &cvs_cmd_update, - &cvs_cmd_server, #if 0 - &cvs_cmd_admin, &cvs_cmd_annotate, &cvs_cmd_checkout, &cvs_cmd_edit, |