diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-03-06 21:09:01 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-03-06 21:09:01 +0000 |
commit | cf47059d14d544ffd894ca8c108f2eadab383c75 (patch) | |
tree | eac030e3921955cb9948a03437483c6bf5a97a51 /usr.bin/cvs/cvs.c | |
parent | 0c73cf04e5fb2c94abc3823fe4d890934e452ad3 (diff) |
initial support for the admin command. Not all options are working yet.
ok xsa@ jfb@
Diffstat (limited to 'usr.bin/cvs/cvs.c')
-rw-r--r-- | usr.bin/cvs/cvs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index de42c0c2482..3eb75d711a3 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.40 2005/02/25 20:30:36 jfb Exp $ */ +/* $OpenBSD: cvs.c,v 1.41 2005/03/06 21:09:00 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -102,7 +102,7 @@ static struct cvs_cmd { NULL, }, { - CVS_OP_ADMIN, "admin", { "adm", "rcs" }, NULL, + CVS_OP_ADMIN, "admin", { "adm", "rcs" }, cvs_admin, "", "", "Administration front end for rcs", |