mirror of
https://github.com/curl/curl.git
synced 2026-07-26 20:17:18 +03:00
ftpserver.pl: Fixed syntax error in commit 98f7ca7e97
Can't modify constant item in scalar assignment line 779, near "0;"
This commit is contained in:
parent
98f7ca7e97
commit
62d232c131
1 changed files with 1 additions and 1 deletions
|
|
@ -776,7 +776,7 @@ sub MAIL_smtp {
|
|||
if (@found = grep /^SIZE (\d+)$/, @capabilities) {
|
||||
if ($found[0] =~ /^SIZE (\d+)$/) {
|
||||
if ($size > $1) {
|
||||
valid = 0;
|
||||
$valid = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue