Modified test so that failing to resolve test server returns an appropriate message but does not return an error code.

This commit is contained in:
Ward Fisher 2014-04-29 10:03:47 +02:00
parent 9dc06b5ccc
commit 00849a4b7a

View File

@ -102,7 +102,7 @@ main()
svc = NC_findtestserver("dts");
if(svc == NULL) {
fprintf(stderr,"Cannot locate test server\n");
exit(1);
exit(0);
}
strcpy(url,PARAMS);
strcat(url,svc);