]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/shared/firewall-util.c
tree-wide: drop 'This file is part of systemd' blurb
[thirdparty/systemd.git] / src / shared / firewall-util.c
index 6d295ea65b8c41d7f71a9193817840ccb1df4d8d..a047a6969e04161e076b7102ebf7bbc21a32391f 100644 (file)
@@ -1,20 +1,6 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
 /***
-  This file is part of systemd.
-
   Copyright 2015 Lennart Poettering
-
-  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/>.
 ***/
 
 /* Temporary work-around for broken glibc vs. linux kernel header definitions
@@ -77,7 +63,8 @@ static int entry_fill_basics(
 
         if (out_interface) {
                 size_t l = strlen(out_interface);
-                assert(l < sizeof entry->ip.outiface && l < sizeof entry->ip.outiface_mask);
+                assert(l < sizeof entry->ip.outiface);
+                assert(l < sizeof entry->ip.outiface_mask);
 
                 strcpy(entry->ip.outiface, out_interface);
                 memset(entry->ip.outiface_mask, 0xFF, l + 1);
@@ -179,7 +166,6 @@ int fw_add_local_dnat(
                 uint16_t remote_port,
                 const union in_addr_union *previous_remote) {
 
-
         _cleanup_(iptc_freep) struct xtc_handle *h = NULL;
         struct ipt_entry *entry, *mask;
         struct ipt_entry_target *t;