diff options
author | 2004-09-23 15:35:10 +0000 | |
---|---|---|
committer | 2004-09-23 15:35:10 +0000 | |
commit | 59c473cc4d885d88fd2390288f07de20d7167a94 (patch) | |
tree | c9d4c2f2fd54cbfb6527f98316a209be9aec11a3 /usr.bin/cvs/resp.c | |
parent | RTL8201L PHY support; from FreeBSD. (diff) | |
download | wireguard-openbsd-59c473cc4d885d88fd2390288f07de20d7167a94.tar.xz wireguard-openbsd-59c473cc4d885d88fd2390288f07de20d7167a94.zip |
print error messages when we receive the `error' response
Diffstat (limited to 'usr.bin/cvs/resp.c')
-rw-r--r-- | usr.bin/cvs/resp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/resp.c b/usr.bin/cvs/resp.c index 59135cccbfa..04afbf4bd4f 100644 --- a/usr.bin/cvs/resp.c +++ b/usr.bin/cvs/resp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: resp.c,v 1.6 2004/08/13 13:27:52 jfb Exp $ */ +/* $OpenBSD: resp.c,v 1.7 2004/09/23 15:35:10 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -308,6 +308,7 @@ cvs_resp_ok(struct cvsroot *root, int type, char *line) static int cvs_resp_error(struct cvsroot *root, int type, char *line) { + fprintf(stderr, "%s\n", line); return (1); } |