forked from pool/iptables
- iptables-apply-mktemp-fix.patch (bnc#730161)
OBS-URL: https://build.opensuse.org/package/show/security:netfilter/iptables?expand=0&rev=38
This commit is contained in:
22
iptables-apply-mktemp-fix.patch
Normal file
22
iptables-apply-mktemp-fix.patch
Normal file
@@ -0,0 +1,22 @@
|
||||
Index: iptables-1.4.12.1+16/iptables/iptables-apply
|
||||
===================================================================
|
||||
--- iptables-1.4.12.1+16.orig/iptables/iptables-apply
|
||||
+++ iptables-1.4.12.1+16/iptables/iptables-apply
|
||||
@@ -111,7 +111,7 @@ if [[ ! -r "$FILE" ]]; then
|
||||
exit 2
|
||||
fi
|
||||
|
||||
-COMMANDS=(tempfile "$SAVE" "$RESTORE")
|
||||
+COMMANDS=(mktemp "$SAVE" "$RESTORE")
|
||||
|
||||
for cmd in "${COMMANDS[@]}"; do
|
||||
if ! command -v $cmd >/dev/null; then
|
||||
@@ -122,7 +122,7 @@ done
|
||||
|
||||
umask 0700
|
||||
|
||||
-TMPFILE=$(tempfile -p iptap)
|
||||
+TMPFILE=$(mktemp)
|
||||
trap "rm -f $TMPFILE" EXIT 1 2 3 4 5 6 7 8 10 11 12 13 14 15
|
||||
|
||||
if ! "$SAVE" >"$TMPFILE"; then
|
Reference in New Issue
Block a user