summaryrefslogtreecommitdiffstats
path: root/src/net/udp
diff options
context:
space:
mode:
authorMichael Brown2007-07-17 02:21:20 +0200
committerMichael Brown2007-07-17 02:21:20 +0200
commitf44969f7df1b61c34fde47250a0d27e7ab58803d (patch)
tree9b8fcacaf5c19da6c6acd4ef07aefadfb1bced08 /src/net/udp
parentObsolete code removal (diff)
downloadipxe-f44969f7df1b61c34fde47250a0d27e7ab58803d.tar.gz
ipxe-f44969f7df1b61c34fde47250a0d27e7ab58803d.tar.xz
ipxe-f44969f7df1b61c34fde47250a0d27e7ab58803d.zip
nameserver should be static
Diffstat (limited to 'src/net/udp')
-rw-r--r--src/net/udp/dns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/udp/dns.c b/src/net/udp/dns.c
index 2dac8ee9..b141eea4 100644
--- a/src/net/udp/dns.c
+++ b/src/net/udp/dns.c
@@ -40,7 +40,7 @@
*/
/** The DNS server */
-struct sockaddr_tcpip nameserver = {
+static struct sockaddr_tcpip nameserver = {
.st_port = htons ( DNS_PORT ),
};