diff options
author | 2016-08-23 08:17:42 +0000 | |
---|---|---|
committer | 2016-08-23 08:17:42 +0000 | |
commit | bd27caa2fca00cfce281c1f48660e6cf3b127999 (patch) | |
tree | b278a24b11a46971f6513c4ebb5ada1f8bca941d | |
parent | add tests for addr_match_list() (diff) | |
download | wireguard-openbsd-bd27caa2fca00cfce281c1f48660e6cf3b127999.tar.xz wireguard-openbsd-bd27caa2fca00cfce281c1f48660e6cf3b127999.zip |
downgrade an error() to a debug2() to match similar cases
in addr_match_list()
-rw-r--r-- | usr.bin/ssh/addrmatch.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 <djm@mindrot.org> @@ -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) { |