From: Steve Holme Date: Sat, 29 Mar 2014 12:32:03 +0000 (+0000) Subject: ftpserver.pl: Fixed syntax error from commit 3a29ee41 X-Git-Tag: curl-7_37_0~237 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fdb13d885a5331e79c82b148e0d59266e58273d6;p=thirdparty%2Fcurl.git ftpserver.pl: Fixed syntax error from commit 3a29ee41 --- diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl index 7364253283..78ceccb9e1 100755 --- a/tests/ftpserver.pl +++ b/tests/ftpserver.pl @@ -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);