diff options
author | 2006-02-08 19:24:19 +0000 | |
---|---|---|
committer | 2006-02-08 19:24:19 +0000 | |
commit | 2c87c1924d7821d2dd0a094e547752457ebd6bdc (patch) | |
tree | 942a3bc5237fe3f97c08d4ced8c3b8078b525e84 | |
parent | Fix lm75 check. (diff) | |
download | wireguard-openbsd-2c87c1924d7821d2dd0a094e547752457ebd6bdc.tar.xz wireguard-openbsd-2c87c1924d7821d2dd0a094e547752457ebd6bdc.zip |
fix more breakage by xsa, although this one is partially my fault as well.
-rw-r--r-- | usr.bin/cvs/proto.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/proto.c b/usr.bin/cvs/proto.c index 201413b42e0..ff2bf2c3031 100644 --- a/usr.bin/cvs/proto.c +++ b/usr.bin/cvs/proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: proto.c,v 1.89 2006/02/05 18:21:44 joris Exp $ */ +/* $OpenBSD: proto.c,v 1.90 2006/02/08 19:24:19 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -715,7 +715,7 @@ cvs_sendresp(u_int rid, const char *arg) int ret; struct cvs_resp *resp; - if ((resp = cvs_resp_getbyid(rid)) == NULL); + if ((resp = cvs_resp_getbyid(rid)) == NULL) fatal("unsupported response type %u", rid); ret = fputs(resp->resp_str, stdout); |