From fdb13d885a5331e79c82b148e0d59266e58273d6 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 29 Mar 2014 12:32:03 +0000 Subject: [PATCH] ftpserver.pl: Fixed syntax error from commit 3a29ee41 --- tests/ftpserver.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl index 7364253..78ceccb 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); -- 2.7.4