diff options
Diffstat (limited to 'data/stunnel/stunnel3')
-rwxr-xr-x | data/stunnel/stunnel3 | 4 |
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) ) |