diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-09-20 12:43:46 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-09-20 12:43:46 +0000 |
commit | 3680b827c7c70802914e02547121b6499cd16900 (patch) | |
tree | af95f409f92211acd6207e970b378fb0252e62e7 /usr.bin/cvs/cvs.c | |
parent | ae17da70d201e05e4725e35d1de27a2d1ff7ea1c (diff) |
Lose unused variable cvs_msg, from Michael W Bombardieri.
Diffstat (limited to 'usr.bin/cvs/cvs.c')
-rw-r--r-- | usr.bin/cvs/cvs.c | 3 |
1 files changed, 1 insertions, 2 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; |