From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] misc-progs: wirelessctrl: Fix missing whitespace for log prefix Date: Wed, 02 Nov 2022 10:30:06 +0000 Message-ID: <20221102103006.650377-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1978076549239416395==" List-Id: --===============1978076549239416395== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Fixes: #12978 Signed-off-by: Michael Tremer --- src/misc-progs/wirelessctrl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/misc-progs/wirelessctrl.c b/src/misc-progs/wirelessctrl.c index 7cffc89df..d31901be1 100644 --- a/src/misc-progs/wirelessctrl.c +++ b/src/misc-progs/wirelessctrl.c @@ -168,13 +168,13 @@ int main(void) { =20 /* with this rule you can disable the logging of the dropped wireless input= packets*/ if (findkey(kv, "DROPWIRELESSINPUT", buffer) && strcmp(buffer, "on") =3D=3D= 0) { - snprintf(command, STRING_SIZE-1, "/sbin/iptables --wait -A WIRELESSINPUT -= i %s -j LOG --log-prefix 'DROP_Wirelessinput'", blue_dev); + snprintf(command, STRING_SIZE-1, "/sbin/iptables --wait -A WIRELESSINPUT -= i %s -j LOG --log-prefix 'DROP_Wirelessinput '", blue_dev); safe_system(command); } =20 /* with this rule you can disable the logging of the dropped wireless forwa= rd packets*/ if (findkey(kv, "DROPWIRELESSFORWARD", buffer) && strcmp(buffer, "on") =3D= =3D 0) { - snprintf(command, STRING_SIZE-1, "/sbin/iptables --wait -A WIRELESSFORWARD= -i %s -j LOG --log-prefix 'DROP_Wirelessforward'", blue_dev); + snprintf(command, STRING_SIZE-1, "/sbin/iptables --wait -A WIRELESSFORWARD= -i %s -j LOG --log-prefix 'DROP_Wirelessforward '", blue_dev); safe_system(command); } =20 --=20 2.30.2 --===============1978076549239416395==--