summaryrefslogtreecommitdiffstats
path: root/src/proto/http.c
diff options
context:
space:
mode:
authorMichael Brown2006-04-24 20:31:37 +0200
committerMichael Brown2006-04-24 20:31:37 +0200
commit832e86246b37c78466a5a30159bed48ed59eb811 (patch)
treec931cdff0738445ba4b5d432784ac11af323b35a /src/proto/http.c
parent(librm_base-1b) is already an offset; no need to apply OFFSET(). (diff)
downloadipxe-832e86246b37c78466a5a30159bed48ed59eb811.tar.gz
ipxe-832e86246b37c78466a5a30159bed48ed59eb811.tar.xz
ipxe-832e86246b37c78466a5a30159bed48ed59eb811.zip
gcc is rather over-aggressive about optimising out static data structures
even when __atribute__ (( unused )) is correctly set...
Diffstat (limited to 'src/proto/http.c')
-rw-r--r--src/proto/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/http.c b/src/proto/http.c
index 3264f2ad..07a16921 100644
--- a/src/proto/http.c
+++ b/src/proto/http.c
@@ -166,7 +166,7 @@ static int http ( char *url, struct sockaddr_in *server __unused,
return 1;
}
-static struct protocol http_protocol __protocol = {
+struct protocol http_protocol __protocol = {
.name = "http",
.default_port = 80,
.load = http,