From: Daniel Stenberg Date: Wed, 16 Jan 2008 22:09:51 +0000 (+0000) Subject: remove trailing comma too, even though I don't think it does any harm X-Git-Tag: curl-7_18_0~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6893fcaa9b86f04e545f616a7677f2da23982cc8;p=thirdparty%2Fcurl.git remove trailing comma too, even though I don't think it does any harm --- diff --git a/tests/runtests.pl b/tests/runtests.pl index e4f2e9d582..9eeaa3f78b 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -374,7 +374,7 @@ sub startnew { sub checkcmd { my ($cmd)=@_; my @paths=(split(":", $ENV{'PATH'}), "/usr/sbin", "/usr/local/sbin", - "/sbin", "/usr/bin", "/usr/local/bin", ); + "/sbin", "/usr/bin", "/usr/local/bin" ); for(@paths) { if( -x "$_/$cmd") { return "$_/$cmd";