diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2006-02-08 19:24:20 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2006-02-08 19:24:20 +0000 |
commit | acc62ba83b80cf3478f2d506d7a4f929633c3840 (patch) | |
tree | 739398d1ffa4fe04ba43c833effe5cac117f49c0 /usr.bin/cvs | |
parent | f7c05c75db4aeb20f3dc9f658bf97bd4677fd3c9 (diff) |
fix more breakage by xsa, although this one is partially my fault as well.
Diffstat (limited to 'usr.bin/cvs')
-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); |