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:
Steve Holme 2013-09-18 12:58:34 +01:00
parent 98f7ca7e97
commit 62d232c131
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}
}