summaryrefslogtreecommitdiff
path: root/data/stunnel/stunnel3
diff options
context:
space:
mode:
authorSam Bingner <sam@bingner.com>2018-08-16 13:43:07 -1000
committerSam Bingner <sam@bingner.com>2018-08-16 13:43:07 -1000
commitc11737050dd962fd01350def3a0a5ceb3f7af023 (patch)
treeb0191347ce15a93eb4baff0dc4c0505f2b690c3d /data/stunnel/stunnel3
parent4f1355f0d9232155bf3b6bdd1313c6d781fb7807 (diff)
Update stunnel to 5.48
Diffstat (limited to 'data/stunnel/stunnel3')
-rwxr-xr-xdata/stunnel/stunnel34
1 files changed, 2 insertions, 2 deletions
diff --git a/data/stunnel/stunnel3 b/data/stunnel/stunnel3
index 86ed9264d..ea1457537 100755
--- a/data/stunnel/stunnel3
+++ b/data/stunnel/stunnel3
@@ -1,5 +1,5 @@
#!/bin/bash
-exec stunnel4 <(
+exec stunnel <(
(while getopts 'cTWfD:O:o:C:p:v:a:A:t:N:u:n:E:R:B:I:d:s:g:P:r:L:l:' OPTKEY; do
case $OPTKEY in
(c) echo "client = yes";;
@@ -51,5 +51,5 @@ exec stunnel4 <(
shift $((OPTIND - 1))
if [[ $# -ne 0 ]]; then
echo "execargs = $@"
- fi) | tee /proc/self/fd/2
+ fi) | tee >(cat>&2)
)