* [PATCH] misc-progs: wirelessctrl: Fix missing whitespace for log prefix
@ 2022-11-02 10:30 Michael Tremer
2022-11-03 15:09 ` Peter Müller
0 siblings, 1 reply; 2+ messages in thread
From: Michael Tremer @ 2022-11-02 10:30 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1385 bytes --]
Fixes: #12978
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
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) {
/* with this rule you can disable the logging of the dropped wireless input packets*/
if (findkey(kv, "DROPWIRELESSINPUT", buffer) && strcmp(buffer, "on") == 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);
}
/* with this rule you can disable the logging of the dropped wireless forward packets*/
if (findkey(kv, "DROPWIRELESSFORWARD", buffer) && strcmp(buffer, "on") == 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);
}
--
2.30.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] misc-progs: wirelessctrl: Fix missing whitespace for log prefix
2022-11-02 10:30 [PATCH] misc-progs: wirelessctrl: Fix missing whitespace for log prefix Michael Tremer
@ 2022-11-03 15:09 ` Peter Müller
0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2022-11-03 15:09 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1481 bytes --]
Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>
> Fixes: #12978
> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
> ---
> 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) {
>
> /* with this rule you can disable the logging of the dropped wireless input packets*/
> if (findkey(kv, "DROPWIRELESSINPUT", buffer) && strcmp(buffer, "on") == 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);
> }
>
> /* with this rule you can disable the logging of the dropped wireless forward packets*/
> if (findkey(kv, "DROPWIRELESSFORWARD", buffer) && strcmp(buffer, "on") == 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);
> }
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-11-03 15:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-02 10:30 [PATCH] misc-progs: wirelessctrl: Fix missing whitespace for log prefix Michael Tremer
2022-11-03 15:09 ` Peter Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox