diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2006-06-16 14:07:43 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2006-06-16 14:07:43 +0000 |
commit | 8fe9d6a6bbb6ed46be29fd47d7ad6e1fd7b7f30b (patch) | |
tree | cc65a8c0da55b75bcc328c8f0a65487cecaafa6c /usr.bin/cvs/status.c | |
parent | 0687aa5e1a327a8bee74d322ce93e8cbc823104f (diff) |
in preparation for the new remote code, proto.h becomes obsolete.
Diffstat (limited to 'usr.bin/cvs/status.c')
-rw-r--r-- | usr.bin/cvs/status.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/cvs/status.c b/usr.bin/cvs/status.c index 9519f776c88..bf8a6e7cc23 100644 --- a/usr.bin/cvs/status.c +++ b/usr.bin/cvs/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.64 2006/06/07 15:21:47 xsa Exp $ */ +/* $OpenBSD: status.c,v 1.65 2006/06/16 14:07:42 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org> @@ -20,7 +20,6 @@ #include "cvs.h" #include "log.h" -#include "proto.h" int cvs_status(int, char **); void cvs_status_local(struct cvs_file *); @@ -28,7 +27,7 @@ void cvs_status_local(struct cvs_file *); static int show_sym = 0; struct cvs_cmd cvs_cmd_status = { - CVS_OP_STATUS, CVS_REQ_STATUS, "status", + CVS_OP_STATUS, 0, "status", { "st", "stat" }, "Display status information on checked out files", "[-lRv]", |