diff options
author | Neil Bowers <neil@bowers.com> | 2012-07-02 23:22:10 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-07-02 23:25:30 +0200 |
commit | 33e19f881eec41ccf1b0960cecc326255335c463 (patch) | |
tree | 176c997edcc05806313bb278da1769b32e276664 /tests/testcurl.pl | |
parent | dd302206ad3dc98c9dca74086850cc560739f188 (diff) | |
download | curl-33e19f881eec41ccf1b0960cecc326255335c463.tar.gz |
testcurl.pl: fix missing semicolon
Diffstat (limited to 'tests/testcurl.pl')
-rwxr-xr-x | tests/testcurl.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index 468e4e64e..a24f2f626 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -368,7 +368,7 @@ if (-d $CURLDIR) { # find out if curl source dir has an in-tree c-ares repo $have_embedded_ares = 1 if (-f "$CURLDIR/ares/GIT-INFO"); } elsif (!$git && -f "$CURLDIR/tests/testcurl.pl") { - logit "$CURLDIR is verified to be a fine daily source dir" + logit "$CURLDIR is verified to be a fine daily source dir"; # find out if curl source dir has an in-tree c-ares extracted tarball $have_embedded_ares = 1 if (-f "$CURLDIR/ares/ares_build.h"); } else { |