diff options
author | des <des@FreeBSD.org> | 2012-11-16 12:31:43 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2012-11-16 12:31:43 +0000 |
commit | f81cc6662509ddec4578b29f294375340c8ae404 (patch) | |
tree | 983b69a5d51f102f5d172a9e279951cf7f3c77ae /lib/libfetch | |
parent | 4e1bc5063bfa594a28bca5b0e186cd205af78f8d (diff) | |
download | FreeBSD-src-f81cc6662509ddec4578b29f294375340c8ae404.zip FreeBSD-src-f81cc6662509ddec4578b29f294375340c8ae404.tar.gz |
Fix weird indentation.
Diffstat (limited to 'lib/libfetch')
-rw-r--r-- | lib/libfetch/http.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libfetch/http.c b/lib/libfetch/http.c index 00dd887..abf79a3 100644 --- a/lib/libfetch/http.c +++ b/lib/libfetch/http.c @@ -1752,11 +1752,11 @@ http_request(struct url *URL, const char *op, struct url_stat *us, /* get headers. http_next_header expects one line readahead */ if (fetch_getln(conn) == -1) { - fetch_syserr(); - goto ouch; + fetch_syserr(); + goto ouch; } do { - switch ((h = http_next_header(conn, &headerbuf, &p))) { + switch ((h = http_next_header(conn, &headerbuf, &p))) { case hdr_syserror: fetch_syserr(); goto ouch; @@ -1785,7 +1785,7 @@ http_request(struct url *URL, const char *op, struct url_stat *us, conn->err != HTTP_USE_PROXY) { n = 1; break; - } + } if (new) free(new); if (verbose) |