diff options
author | 2011-09-20 12:43:45 +0000 | |
---|---|---|
committer | 2011-09-20 12:43:45 +0000 | |
commit | d2926ab8aaed464b59abd103847c8e3bc09f1559 (patch) | |
tree | ba3bff21985076ea1aef5abad1f8d6fa7f11df2c | |
parent | Mark softraid crypto volumes as being capable of auto assembly, since they (diff) | |
download | wireguard-openbsd-d2926ab8aaed464b59abd103847c8e3bc09f1559.tar.xz wireguard-openbsd-d2926ab8aaed464b59abd103847c8e3bc09f1559.zip |
Lose unused variable cvs_msg, from Michael W Bombardieri.
-rw-r--r-- | usr.bin/cvs/cvs.c | 3 | ||||
-rw-r--r-- | usr.bin/cvs/cvs.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index 82b22ab5c72..68e8d5b9ef9 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.151 2010/07/23 08:31:19 ray Exp $ */ +/* $OpenBSD: cvs.c,v 1.152 2011/09/20 12:43:45 nicm Exp $ */ /* * Copyright (c) 2006, 2007 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -63,7 +63,6 @@ char *cvs_rootstr; char *cvs_rsh = CVS_RSH_DEFAULT; char *cvs_editor = CVS_EDITOR_DEFAULT; char *cvs_homedir = NULL; -char *cvs_msg = NULL; char *cvs_tmpdir = CVS_TMPDIR_DEFAULT; struct cvsroot *current_cvsroot = NULL; diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index 7dfdbcd0dd6..c20ecfad040 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.180 2011/04/20 18:43:57 nicm Exp $ */ +/* $OpenBSD: cvs.h,v 1.181 2011/09/20 12:43:45 nicm Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -285,7 +285,6 @@ extern struct cvsroot *current_cvsroot; extern char *cvs_tagname; extern char *cvs_editor; extern char *cvs_homedir; -extern char *cvs_msg; extern char *cvs_rsh; extern char *cvs_tmpdir; extern char *import_repository; |