]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: missing match localnetwork negation check
authordjm@openbsd.org <djm@openbsd.org>
Mon, 17 Jul 2023 06:16:33 +0000 (06:16 +0000)
committerDamien Miller <djm@mindrot.org>
Mon, 17 Jul 2023 06:23:03 +0000 (16:23 +1000)
OpenBSD-Commit-ID: 9a08ed8dae27d3f38cf280f1b28d4e0ff41a737a

readconf.c

index debb0c417390dcd4b383a830510cbaae7ad52c6c..fe61616e82a3d6597b551d13bd79ca9762813288 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: readconf.c,v 1.379 2023/07/17 04:08:31 djm Exp $ */
+/* $OpenBSD: readconf.c,v 1.380 2023/07/17 06:16:33 djm Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -748,6 +748,8 @@ match_cfg_line(Options *options, char **condition, struct passwd *pw,
                                goto out;
                        }
                        r = check_match_ifaddrs(arg) == 1;
+                       if (r == (negate ? 1 : 0))
+                               this_result = result = 0;
                } else if (strcasecmp(attrib, "tagged") == 0) {
                        criteria = xstrdup(options->tag == NULL ? "" :
                            options->tag);