diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-11-23 16:25:37 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-11-23 16:28:28 +0000 |
commit | e1c255f388e55624c762b3eefa453ee4456d1297 (patch) | |
tree | 01b026d60d7452040a99641933629f42a0f5eb98 /tests | |
parent | 6d3c832a309455f4d99024941b43715e474f9b93 (diff) |
ftpserver.pl: Fixed servercmd REPLY with * detection
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/ftpserver.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl index d71dc8a24..d14f7d305 100755 --- a/tests/ftpserver.pl +++ b/tests/ftpserver.pl @@ -2841,7 +2841,7 @@ sub customize { logmsg "FTPD: Getting commands from log/ftpserver.cmd\n"; while(<CUSTOM>) { - if($_ =~ /REPLY ([A-Za-z0-9+\/=]*) (.*)/) { + if($_ =~ /REPLY ([A-Za-z0-9+\/=\*]*) (.*)/) { $customreply{$1}=eval "qq{$2}"; if($1 eq "") { logmsg "FTPD: set custom reply for empty response\n"; |