mirror of
https://github.com/curl/curl.git
synced 2026-04-20 19:21:14 +03:00
ftpserver.pl: Fixed syntax error in commit 33c1f2876b
Can't modify constant item in postincrement line 727, near "i++"
This commit is contained in:
parent
33c1f2876b
commit
894585784c
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue