aboutsummaryrefslogtreecommitdiff
path: root/tests/ftpserver.pl
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-11-23 16:25:37 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-11-23 16:28:28 +0000
commite1c255f388e55624c762b3eefa453ee4456d1297 (patch)
tree01b026d60d7452040a99641933629f42a0f5eb98 /tests/ftpserver.pl
parent6d3c832a309455f4d99024941b43715e474f9b93 (diff)
ftpserver.pl: Fixed servercmd REPLY with * detection
Diffstat (limited to 'tests/ftpserver.pl')
-rwxr-xr-xtests/ftpserver.pl2
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";