runtests: fix missing use of exe_ext helper function

This commit is contained in:
Marc Hoersken 2020-03-06 21:15:58 +01:00
Родитель c8f086bcc3
Коммит 3dce9849be
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 61E03CBED7BC859E
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -2196,7 +2196,7 @@ sub runsocksserver {
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
# start our socks server, get commands from the FTP cmd file
my $cmd="server/socksd".
my $cmd="server/socksd".exe_ext('SRV').
" --port $port ".
" --pidfile $pidfile".
" --backend $HOSTIP".
@ -2710,7 +2710,7 @@ sub checksystem {
@version = <VERSOUT>;
close(VERSOUT);
open(DISABLED, "server/disabled|");
open(DISABLED, "server/disabled".exe_ext('TOOL')."|");
@disabled = <DISABLED>;
close(DISABLED);