diff options
author | 2005-07-10 13:58:19 +0000 | |
---|---|---|
committer | 2005-07-10 13:58:19 +0000 | |
commit | 8a4721a379c9dba59b04e11661fe5cb58bdb3560 (patch) | |
tree | 715faf082eaba23a6172580f2110b7e5e64d02b0 | |
parent | only display info msg if -q is not specified; (diff) | |
download | wireguard-openbsd-8a4721a379c9dba59b04e11661fe5cb58bdb3560.tar.xz wireguard-openbsd-8a4721a379c9dba59b04e11661fe5cb58bdb3560.zip |
no need to declare the verbosity var here as it is already done in cvs.h;
-rw-r--r-- | usr.bin/cvs/diff.c | 4 | ||||
-rw-r--r-- | usr.bin/cvs/status.c | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/usr.bin/cvs/diff.c b/usr.bin/cvs/diff.c index d86c9275a08..3b8652f5d51 100644 --- a/usr.bin/cvs/diff.c +++ b/usr.bin/cvs/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.46 2005/07/10 13:53:51 xsa Exp $ */ +/* $OpenBSD: diff.c,v 1.47 2005/07/10 13:58:19 xsa Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -205,8 +205,6 @@ struct diff_arg { char *date2; }; -extern int verbosity; - static int cvs_diff_init (struct cvs_cmd *, int, char **, int *); static int cvs_diff_remote (CVSFILE *, void *); diff --git a/usr.bin/cvs/status.c b/usr.bin/cvs/status.c index a37f545c8e7..9c0ea493e78 100644 --- a/usr.bin/cvs/status.c +++ b/usr.bin/cvs/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.38 2005/07/08 12:45:10 xsa Exp $ */ +/* $OpenBSD: status.c,v 1.39 2005/07/10 13:58:19 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -54,8 +54,6 @@ const char *cvs_statstr[] = { "Needs Checkout", }; -extern int verbosity; - static int cvs_status_init (struct cvs_cmd *, int, char **, int *); static int cvs_status_remote (CVSFILE *, void *); |