diff options
author | 2008-02-28 20:00:56 +0000 | |
---|---|---|
committer | 2008-02-28 20:00:56 +0000 | |
commit | 4cbd9781e427c376f40c6390a4c9a96acea2e2f3 (patch) | |
tree | 9e1668f335b4d75b0be919d6afd38e96de0df592 | |
parent | Log an error if a device can not be opened, only log line discipline attachment (diff) | |
download | wireguard-openbsd-4cbd9781e427c376f40c6390a4c9a96acea2e2f3.tar.xz wireguard-openbsd-4cbd9781e427c376f40c6390a4c9a96acea2e2f3.zip |
do not fatal() on CVS_METHOD_EXT, since we actually support this.
reported & diff tested by Geerd-Dietger Hoffmann
-rw-r--r-- | usr.bin/cvs/client.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/cvs/client.c b/usr.bin/cvs/client.c index 0d0c0f5efa5..2f5a1b99d85 100644 --- a/usr.bin/cvs/client.c +++ b/usr.bin/cvs/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.106 2008/02/27 22:34:04 joris Exp $ */ +/* $OpenBSD: client.c,v 1.107 2008/02/28 20:00:56 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -209,7 +209,6 @@ cvs_client_connect_to_server(void) case CVS_METHOD_KSERVER: case CVS_METHOD_GSERVER: case CVS_METHOD_FORK: - case CVS_METHOD_EXT: fatal("the specified connection method is not supported"); default: break; |