mirror of
https://github.com/curl/curl.git
synced 2026-04-15 03:41:41 +03:00
ftpserver.pl: Extended the full text reply regular expression
Extended the regex to include other valid characters such as those used in the reply text of Test 836.
This commit is contained in:
parent
8fdb87d0df
commit
acefed139f
1 changed files with 1 additions and 1 deletions
|
|
@ -2760,7 +2760,7 @@ sub customize {
|
|||
logmsg "FTPD: Getting commands from log/ftpserver.cmd\n";
|
||||
|
||||
while(<CUSTOM>) {
|
||||
if($_ =~ /REPLY \"([A-Z]+ [A-Za-z0-9+-\/=\*]+)\" (.*)/) {
|
||||
if($_ =~ /REPLY \"([A-Z]+ [A-Za-z0-9+-\/=\*. ]+)\" (.*)/) {
|
||||
$fulltextreply{$1}=eval "qq{$2}";
|
||||
logmsg "FTPD: set custom reply for $1\n";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue