From b2b66f749a7e2715bf6c36903c5b9cba2a121c38 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Mon, 9 May 2005 07:45:30 +0000
Subject: no need to display src/config.h anymore since it is a duplicate of
 lib/config.h but we could use having a look at ares/config.h when that is
 used

---
 tests/testcurl.pl | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

(limited to 'tests')

diff --git a/tests/testcurl.pl b/tests/testcurl.pl
index a8da82785..67b189147 100755
--- a/tests/testcurl.pl
+++ b/tests/testcurl.pl
@@ -435,16 +435,16 @@ while (<F>) {
 }
 close(F);
 
-logit "display src/config$confsuffix.h";
-open(F, "src/config$confsuffix.h") or die "src/config$confsuffix.h: $!";
-while (<F>) {
-  print if /^ *#/;
-}
-close(F);
-
 if (grepfile("define USE_ARES", "lib/config$confsuffix.h")) {
   logit "setup to build ares";
 
+  logit "display ares/config$confsuffix.h";
+  open(F, "ares/config$confsuffix.h") or die "ares/config$confsuffix.h: $!";
+  while (<F>) {
+      print if /^ *#/;
+  }
+  close(F);
+
   logit "build ares";
   chdir "ares";
 
-- 
cgit v1.2.3