diff options
Diffstat (limited to 'net-firewall/ebtables')
-rw-r--r-- | net-firewall/ebtables/files/ebtables.initd-r1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-firewall/ebtables/files/ebtables.initd-r1 b/net-firewall/ebtables/files/ebtables.initd-r1 index 9c78e9b78df0..6608760110be 100644 --- a/net-firewall/ebtables/files/ebtables.initd-r1 +++ b/net-firewall/ebtables/files/ebtables.initd-r1 @@ -1,5 +1,5 @@ #!/sbin/openrc-run -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 extra_commands="save panic" @@ -16,7 +16,7 @@ depend() { ebtables_tables() { for table in filter nat broute; do if ${ebtables_bin} -t ${table} -L > /dev/null 2>&1; then - echo -n "${table} " + printf '%s' "${table} " fi done } |