From: djm Date: Tue, 23 Aug 2016 08:17:42 +0000 (+0000) Subject: downgrade an error() to a debug2() to match similar cases X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=bd27caa2fca00cfce281c1f48660e6cf3b127999;p=openbsd downgrade an error() to a debug2() to match similar cases in addr_match_list() --- diff --git a/usr.bin/ssh/addrmatch.c b/usr.bin/ssh/addrmatch.c index 1b86f6fd0a0..4ca12a910a6 100644 --- a/usr.bin/ssh/addrmatch.c +++ b/usr.bin/ssh/addrmatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: addrmatch.c,v 1.11 2016/08/23 03:24:10 djm Exp $ */ +/* $OpenBSD: addrmatch.c,v 1.12 2016/08/23 08:17:42 djm Exp $ */ /* * Copyright (c) 2004-2008 Damien Miller @@ -394,8 +394,8 @@ addr_match_list(const char *addr, const char *_list) /* Prefer CIDR address matching */ r = addr_pton_cidr(cp, &match_addr, &masklen); if (r == -2) { - error("Inconsistent mask length for " - "network \"%.100s\"", cp); + debug2("%s: inconsistent mask length for " + "match network \"%.100s\"", __func__, cp); ret = -2; break; } else if (r == 0) {