aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/fetch
diff options
context:
space:
mode:
authorJake Burkholder <jake@FreeBSD.org>2000-05-26 02:09:24 +0000
committerJake Burkholder <jake@FreeBSD.org>2000-05-26 02:09:24 +0000
commite39756439c7255bc16ba14b7b991cb01ba1c93bd (patch)
tree112dfed9c5841280f457e0dca97e8de49e04ecd9 /usr.bin/fetch
parent13c6acf19de074f64f9ff031a2e5e660c7957fd2 (diff)
downloadsrc-e39756439c7255bc16ba14b7b991cb01ba1c93bd.tar.gz
src-e39756439c7255bc16ba14b7b991cb01ba1c93bd.zip
Back out the previous change to the queue(3) interface.
It was not discussed and should probably not happen. Requested by: msmith and others
Notes
Notes: svn path=/head/; revision=60938
Diffstat (limited to 'usr.bin/fetch')
-rw-r--r--usr.bin/fetch/http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/fetch/http.c b/usr.bin/fetch/http.c
index fd5312512146..e7d5f8b9c4ac 100644
--- a/usr.bin/fetch/http.c
+++ b/usr.bin/fetch/http.c
@@ -68,13 +68,13 @@ struct http_state {
};
struct http_auth {
- TAILQ_ENTRY(struct http_auth) ha_link;
+ TAILQ_ENTRY(http_auth) ha_link;
char *ha_scheme;
char *ha_realm;
char *ha_params;
const struct http_auth_method *ha_ham;
};
-TAILQ_HEAD(http_auth_head, struct http_auth);
+TAILQ_HEAD(http_auth_head, http_auth);
static int http_parse(struct fetch_state *fs, const char *uri);
static int http_proxy_parse(struct fetch_state *fs, const char *uri);