]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/core/ip-address-access.c
tree-wide: drop license boilerplate
[thirdparty/systemd.git] / src / core / ip-address-access.c
index 08bd4c0bce1f7cd75a2705b123fd34fc038567da..d74d9e68ba28bbcc22ee86d279d5bb720d039040 100644 (file)
@@ -3,19 +3,6 @@
   This file is part of systemd.
 
   Copyright 2016 Daniel Mack
-
-  systemd is free software; you can redistribute it and/or modify it
-  under the terms of the GNU Lesser General Public License as published by
-  the Free Software Foundation; either version 2.1 of the License, or
-  (at your option) any later version.
-
-  systemd is distributed in the hope that it will be useful, but
-  WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-  Lesser General Public License for more details.
-
-  You should have received a copy of the GNU Lesser General Public License
-  along with systemd; If not, see <http://www.gnu.org/licenses/>.
 ***/
 
 #include <stdio.h>
@@ -156,7 +143,7 @@ int config_parse_ip_address_access(
                 r = bpf_firewall_supported();
                 if (r < 0)
                         return r;
-                if (r == 0) {
+                if (r == BPF_FIREWALL_UNSUPPORTED) {
                         static bool warned = false;
 
                         log_full(warned ? LOG_DEBUG : LOG_WARNING,