summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/cvs.h
diff options
context:
space:
mode:
authorJean-Francois Brousseau <jfb@cvs.openbsd.org>2004-08-05 13:24:38 +0000
committerJean-Francois Brousseau <jfb@cvs.openbsd.org>2004-08-05 13:24:38 +0000
commit0e97993420e1086e5f69f5c28f5eb62a599d9a36 (patch)
tree8a1f29cf30e44a6c039b548c28e9990188248121 /usr.bin/cvs/cvs.h
parentdcaadce93d0cc4377d9bca3684a542120103c8b5 (diff)
When spawning the subprocess for the connection, attach a pipe to its
standard error as well
Diffstat (limited to 'usr.bin/cvs/cvs.h')
-rw-r--r--usr.bin/cvs/cvs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h
index 5db341c1d22..3cc5c94c922 100644
--- a/usr.bin/cvs/cvs.h
+++ b/usr.bin/cvs/cvs.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cvs.h,v 1.20 2004/08/03 00:05:54 jfb Exp $ */
+/* $OpenBSD: cvs.h,v 1.21 2004/08/05 13:24:37 jfb Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -84,6 +84,7 @@
/* defaults */
+#define CVS_SERVER_DEFAULT "cvs"
#define CVS_RSH_DEFAULT "ssh"
#define CVS_EDITOR_DEFAULT "vi"
@@ -142,6 +143,7 @@ struct cvsroot {
/* connection data */
FILE *cr_srvin;
FILE *cr_srvout;
+ FILE *cr_srverr;
char *cr_version; /* version of remote server */
u_char cr_vrmask[10]; /* mask of valid requests supported by server */
};