diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-07-30 17:44:50 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-07-30 17:44:50 +0000 |
commit | 5c662bf92b35a2d0dcc1c4567360d5e8f18b0773 (patch) | |
tree | b6a1c7321ddeee93322aa20292a8c0240ccc55bd /usr.bin/cvs/cvs.c | |
parent | a1ef3c1ccef8ac040bfe1be7447e06a9fb5c13f7 (diff) |
Plug in the handler for `cvs status'
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 2094946cf0e..92c2481329b 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.6 2004/07/30 01:49:22 jfb Exp $ */ +/* $OpenBSD: cvs.c,v 1.7 2004/07/30 17:44:48 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -199,7 +199,7 @@ static struct cvs_cmd { "Server mode", }, { - CVS_OP_STATUS, "status", {}, NULL, + CVS_OP_STATUS, "status", {}, cvs_status, "", "Display status information on checked out files", }, |