1
0
mirror of https://github.com/moparisthebest/curl synced 2025-02-28 09:21:50 -05:00

ftpserver.pl: Fixed syntax error from commit 3a29ee41

This commit is contained in:
Steve Holme 2014-03-29 12:32:03 +00:00
parent 8541f2d39d
commit fdb13d885a

View File

@ -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);