diff options
author | 2004-07-27 13:08:23 +0000 | |
---|---|---|
committer | 2004-07-27 13:08:23 +0000 | |
commit | 73f78f036e729ab4ed5a518e9efa035b28eac9d2 (patch) | |
tree | 6c34d2121ea34cacb9487781623928069972cdab | |
parent | Add per-device evcount interrupt counters; also use LIST_xxx macros in isr.c (diff) | |
download | wireguard-openbsd-73f78f036e729ab4ed5a518e9efa035b28eac9d2.tar.xz wireguard-openbsd-73f78f036e729ab4ed5a518e9efa035b28eac9d2.zip |
* don't always return 0 in cvs_client_sendreq()
-rw-r--r-- | usr.bin/cvs/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/client.c b/usr.bin/cvs/client.c index 4ef72aed707..8b0451bc9cd 100644 --- a/usr.bin/cvs/client.c +++ b/usr.bin/cvs/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.2 2004/07/26 16:01:22 jfb Exp $ */ +/* $OpenBSD: client.c,v 1.3 2004/07/27 13:08:23 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -270,7 +270,7 @@ cvs_client_sendreq(u_int rid, const char *arg, int resp) } while (ret == 0); } - return (0); + return (ret); } |