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

ftpserver.pl: Fixed syntax error from commit 3a29ee41

parent 8541f2d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -443,7 +443,7 @@ sub getreplydata {
    my ($testno) = @_;
    my $testpart = "";

    $testno =~ s/^([^0-9]*)//
    $testno =~ s/^([^0-9]*)//;
    if($testno > 10000) {
       $testpart = $testno % 10000;
       $testno = int($testno / 10000);