mirror of
https://github.com/curl/curl.git
synced 2026-07-24 08:47:50 +03:00
ftpserver: support case insensitive commands
This commit is contained in:
parent
38ab7b4ccb
commit
b20df57326
1 changed files with 1 additions and 1 deletions
|
|
@ -3193,7 +3193,7 @@ while(1) {
|
|||
}
|
||||
|
||||
# only perform this if we're not faking a reply
|
||||
my $func = $commandfunc{$FTPCMD};
|
||||
my $func = $commandfunc{uc($FTPCMD)};
|
||||
if($func) {
|
||||
&$func($FTPARG, $FTPCMD);
|
||||
$check = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue