summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2005-06-01 17:44:35 +0000
committerJoris Vink <joris@cvs.openbsd.org>2005-06-01 17:44:35 +0000
commita721914325d4528b21fcae9290c80dd9905ce3c3 (patch)
treeca350f1f38923326ee467b1e834422bd25524d15
parent58837dfa2499e89f2136ec73a589dbf6ac973385 (diff)
missed these in previous commits.
-rw-r--r--usr.bin/cvs/cvs.c4
-rw-r--r--usr.bin/cvs/cvs.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c
index 928c3c99162..8172d7a11ed 100644
--- a/usr.bin/cvs/cvs.c
+++ b/usr.bin/cvs/cvs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cvs.c,v 1.68 2005/05/31 08:58:47 xsa Exp $ */
+/* $OpenBSD: cvs.c,v 1.69 2005/06/01 17:44:34 joris Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -64,7 +64,7 @@ int cvs_cmdop;
char *cvs_rootstr;
char *cvs_rsh = CVS_RSH_DEFAULT;
char *cvs_editor = CVS_EDITOR_DEFAULT;
-
+char *cvs_repo_base = NULL;
char *cvs_msg = NULL;
/* hierarchy of all the files affected by the command */
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h
index de961ccff68..a5dcf944c6e 100644
--- a/usr.bin/cvs/cvs.h
+++ b/usr.bin/cvs/cvs.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cvs.h,v 1.63 2005/05/31 08:58:47 xsa Exp $ */
+/* $OpenBSD: cvs.h,v 1.64 2005/06/01 17:44:34 joris Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -292,6 +292,7 @@ typedef struct cvs_histfile {
#ifdef CVS
+extern char *cvs_repo_base;
extern char *cvs_command;
extern char *cvs_editor;
extern char *cvs_msg;