From 5bc1b53b5210322f2f88dc30e7d37235583d5da3 Mon Sep 17 00:00:00 2001 From: lwthiker Date: Thu, 17 Feb 2022 21:18:47 +0200 Subject: [PATCH] Change pipe name in the wrapper script --- curl_ff95 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/curl_ff95 b/curl_ff95 index f145bf7..3d919cd 100755 --- a/curl_ff95 +++ b/curl_ff95 @@ -3,8 +3,10 @@ # Find the directory of this script dir=`echo "$0" | sed 's%/[^/]*$%%'` -rm pipe && mkfifo pipe -exec 5<>pipe 3>pipe 4&- +PIPE=/tmp/curl-pipe + +rm -f "$PIPE" && mkfifo "$PIPE" +exec 5<>"$PIPE" 3>"$PIPE" 4<"$PIPE" 5>&- # The list of ciphers can be obtained by looking at the Client Hello message in # Wireshark, then converting it using the cipherlist array at