diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-08-12 18:35:19 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-08-12 18:35:19 +0000 |
commit | 200842c21bad72a1c2c6474aa9fa5c76c291bc98 (patch) | |
tree | 5e49b4015abda8880086e534e6d104683d758882 /usr.bin/cvs | |
parent | daada83aa1b73838d52c7cd3bbbe89fd604d4191 (diff) |
Don't bother about the server's standard error just yet
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/proto.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/cvs/proto.c b/usr.bin/cvs/proto.c index 86e84876636..b6cc41cdc7d 100644 --- a/usr.bin/cvs/proto.c +++ b/usr.bin/cvs/proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: proto.c,v 1.20 2004/08/05 13:24:37 jfb Exp $ */ +/* $OpenBSD: proto.c,v 1.21 2004/08/12 18:35:18 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -279,11 +279,13 @@ cvs_connect(struct cvsroot *root) return (-1); } +#if 0 root->cr_srverr = fdopen(errfd[0], "r"); if (root->cr_srverr == NULL) { cvs_log(LP_ERR, "failed to create pipe stream"); return (-1); } +#endif /* make the streams line-buffered */ (void)setvbuf(root->cr_srvin, NULL, _IOLBF, 0); |