Commit 89458578 authored by Steve Holme's avatar Steve Holme
Browse files

ftpserver.pl: Fixed syntax error in commit 33c1f287

Can't modify constant item in postincrement line 727, near "i++"
parent 33c1f287
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {