ftpserver.pl: Fixed syntax error in commit 33c1f2876b

Can't modify constant item in postincrement line 727, near "i++"
This commit is contained in:
Steve Holme 2013-09-15 20:07:43 +01:00
parent 33c1f2876b
commit 894585784c
1 changed files with 1 additions and 1 deletions

View File

@ -724,7 +724,7 @@ sub EHLO_smtp {
}
# Send the EHLO response
for (my $i = 0; $i < @data; i++) {
for (my $i = 0; $i < @data; $i++) {
my $d = $data[$i];
if($i < @data - 1) {