diff options
author | des <des@FreeBSD.org> | 2002-10-27 15:32:51 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-10-27 15:32:51 +0000 |
commit | 877e52987a99dbf69b21ba195575a515cf30fdc3 (patch) | |
tree | c488bcede571e280b7724994c7068f9930552c78 /usr.bin | |
parent | f8dcf07de6dd867cbe1ce1658aa8ef03f10ed3cd (diff) | |
download | FreeBSD-src-877e52987a99dbf69b21ba195575a515cf30fdc3.zip FreeBSD-src-877e52987a99dbf69b21ba195575a515cf30fdc3.tar.gz |
Whitespace and indentation cleanup.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/fetch/fetch.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/usr.bin/fetch/fetch.c b/usr.bin/fetch/fetch.c index 740ddff..0c52b7e 100644 --- a/usr.bin/fetch/fetch.c +++ b/usr.bin/fetch/fetch.c @@ -135,7 +135,7 @@ stat_display(struct xferstat *xs, int force) if (ioctl(STDERR_FILENO, TIOCGPGRP, &ctty_pgrp) == -1 || (pid_t)ctty_pgrp != pgrp) return; - + gettimeofday(&now, NULL); if (!force && now.tv_sec <= xs->last.tv_sec) return; @@ -348,7 +348,7 @@ fetch(char *URL, const char *path) alarm(timeout); r = fetchStat(url, &us, flags); if (timeout) - alarm(0); + alarm(0); if (sigalrm || sigint) goto signal; if (r == -1) { @@ -481,14 +481,14 @@ fetch(char *URL, const char *path) if (sb.st_size == us.size && sb.st_mtime == us.mtime) goto success; } - + if (of == NULL) { /* * We don't yet have an output file; either this is a * vanilla run with no special flags, or the local and * remote files didn't match. */ - + if (url->offset != 0) { /* * We tried to restart a transfer, but for @@ -575,7 +575,7 @@ fetch(char *URL, const char *path) if (!n_flag && us.mtime && !o_stdout && (stat(path, &sb) != -1) && sb.st_mode & S_IFREG) { struct timeval tv[2]; - + fflush(of); tv[0].tv_sec = (long)(us.atime ? us.atime : us.mtime); tv[1].tv_sec = (long)us.mtime; @@ -755,7 +755,7 @@ main(int argc, char *argv[]) case 's': s_flag = 1; break; - case 'T': + case 'T': T_secs = strtol(optarg, &end, 10); if (*optarg == '\0' || *end != '\0') errx(1, "invalid timeout (%s)", optarg); @@ -856,9 +856,9 @@ main(int argc, char *argv[]) v_tty = isatty(STDERR_FILENO); if (v_tty) pgrp = getpgrp(); - + r = 0; - + /* authentication */ if (v_tty) fetchAuthMethod = query_auth; @@ -871,9 +871,9 @@ main(int argc, char *argv[]) if (!*p) p = "fetch.out"; - + fetchLastErrCode = 0; - + if (o_flag) { if (o_stdout) { e = fetch(*argv, "-"); @@ -890,10 +890,10 @@ main(int argc, char *argv[]) if (sigint) kill(getpid(), SIGINT); - + if (e == 0 && once_flag) exit(0); - + if (e) { r = 1; if ((fetchLastErrCode |