modified output to prevent the autobuild system to trap on the 'FAILED' output

mistaking it for an actual failed test case
This commit is contained in:
Daniel Stenberg 2006-01-04 23:02:40 +00:00
parent ea01755bb4
commit 8a0ca3066e
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ int main(int argc, char *argv[])
} }
#endif #endif
if(rc) if(rc)
printf("Resolving '%s' FAILED\n", host); printf("Resolving '%s' didn't work\n", host);
return !rc?0:1; return !rc?0:1;
} }