Revert url.c:1.2: there was a race condition between when I produced

the fix and when I committed it -- in between the two, DES committed
a different fix, rendering this fix unneeded.

Requested by:	des
This commit is contained in:
Robert Watson 2003-04-17 03:51:06 +00:00
parent 909928b6ea
commit 82c459bef8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=113587

View File

@ -89,7 +89,7 @@ fileGetURL(const char *base, const char *spec)
else
strcpy(fname, spec);
if ((ftp = fetchGetURL(fname, Verbose ? "v" : "")) == NULL) {
if ((ftp = fetchGetURL(fname, Verbose ? "v" : NULL)) == NULL) {
printf("Error: FTP Unable to get %s: %s\n",
fname, fetchLastErrString);
return NULL;