diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2002-11-27 20:52:07 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2002-11-27 20:52:07 +0000 |
| commit | 3d7c408ce43613400286f6573bbe3bab80fee623 (patch) | |
| tree | 3ed31b7b35b8c2a4b0ad6a7bdcde768e5cc768f4 /usr.bin | |
| parent | a303783836579c94f69203076248925e95654e45 (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/fetch/fetch.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/fetch/fetch.c b/usr.bin/fetch/fetch.c index c40b8b6553d9..63cd73308c50 100644 --- a/usr.bin/fetch/fetch.c +++ b/usr.bin/fetch/fetch.c @@ -392,7 +392,7 @@ fetch(char *URL, const char *path) if (sigalrm || sigint) goto signal; if (f == NULL) { - warnx("%s: %s", path, fetchLastErrString); + warnx("%s: %s", URL, fetchLastErrString); goto failure; } if (sigint) @@ -401,11 +401,11 @@ fetch(char *URL, const char *path) /* check that size is as expected */ if (S_size) { if (us.size == -1) { - warnx("%s: size unknown", path); + warnx("%s: size unknown", URL); goto failure; } else if (us.size != S_size) { warnx("%s: size mismatch: expected %lld, actual %lld", - path, (long long)S_size, (long long)us.size); + URL, (long long)S_size, (long long)us.size); goto failure; } } @@ -420,7 +420,7 @@ fetch(char *URL, const char *path) } if (us.size == -1 && !o_stdout && v_level > 0) - warnx("%s: size of remote file is not known", path); + warnx("%s: size of remote file is not known", URL); if (v_level > 1) { if (sb.st_size != -1) fprintf(stderr, "local size / mtime: %lld / %ld\n", @@ -470,7 +470,7 @@ fetch(char *URL, const char *path) if (nsb.st_dev != sb.st_dev || nsb.st_ino != nsb.st_ino || nsb.st_size != sb.st_size) { - warnx("%s: file has changed", path); + warnx("%s: file has changed", URL); fclose(of); of = NULL; sb = nsb; @@ -497,7 +497,7 @@ fetch(char *URL, const char *path) */ url->offset = 0; if ((f = fetchXGet(url, &us, flags)) == NULL) { - warnx("%s: %s", path, fetchLastErrString); + warnx("%s: %s", URL, fetchLastErrString); goto failure; } if (sigint) |
