ftpserver.pl: Fixed syntax error in commit 33c1f2876b9029
Can't modify constant item in postincrement line 727, near "i++"
This commit is contained in:
parent
33c1f2876b
commit
894585784c
@ -724,7 +724,7 @@ sub EHLO_smtp {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Send the EHLO response
|
# Send the EHLO response
|
||||||
for (my $i = 0; $i < @data; i++) {
|
for (my $i = 0; $i < @data; $i++) {
|
||||||
my $d = $data[$i];
|
my $d = $data[$i];
|
||||||
|
|
||||||
if($i < @data - 1) {
|
if($i < @data - 1) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user