diff options
-rw-r--r-- | usr.bin/cvs/cvs.c | 4 | ||||
-rw-r--r-- | usr.bin/cvs/cvs.h | 5 |
2 files changed, 3 insertions, 6 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index 3f0d5713604..fc0d2a3255c 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.8 2004/07/30 18:58:56 jfb Exp $ */ +/* $OpenBSD: cvs.c,v 1.9 2004/07/30 23:13:24 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -63,8 +63,6 @@ char *cvs_rootstr; char *cvs_rsh = CVS_RSH_DEFAULT; char *cvs_editor = CVS_EDITOR_DEFAULT; -struct cvsroot *cvs_root = NULL; - /* * Command dispatch table diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index 4a8b1681c40..44ea445c0f5 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.17 2004/07/30 17:37:13 jfb Exp $ */ +/* $OpenBSD: cvs.h,v 1.18 2004/07/30 23:13:24 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -209,12 +209,11 @@ typedef struct cvs_histfile { #ifdef CVS -extern struct cvsroot *cvs_root; +extern char *cvs_editor; #endif - /* client command handlers */ int cvs_add (int, char **); int cvs_checkout (int, char **); |