diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-09-18 12:58:34 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-09-18 12:58:34 +0100 |
commit | 62d232c1312d7dc1b6412044123a1fa3f14d6336 (patch) | |
tree | e2f2d4f7382c3832ae1936b5b44156fb990ce4d1 | |
parent | 98f7ca7e971006df09ca0ec844beb55efe30d7f6 (diff) |
ftpserver.pl: Fixed syntax error in commit 98f7ca7e971006
Can't modify constant item in scalar assignment line 779, near "0;"
-rwxr-xr-x | tests/ftpserver.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl index 65e522312..fd30ac823 100755 --- a/tests/ftpserver.pl +++ b/tests/ftpserver.pl @@ -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; } } } |