diff options
| author | Michael Brown | 2007-07-17 02:21:20 +0200 |
|---|---|---|
| committer | Michael Brown | 2007-07-17 02:21:20 +0200 |
| commit | f44969f7df1b61c34fde47250a0d27e7ab58803d (patch) | |
| tree | 9b8fcacaf5c19da6c6acd4ef07aefadfb1bced08 /src/net | |
| parent | Obsolete code removal (diff) | |
| download | ipxe-f44969f7df1b61c34fde47250a0d27e7ab58803d.tar.gz ipxe-f44969f7df1b61c34fde47250a0d27e7ab58803d.tar.xz ipxe-f44969f7df1b61c34fde47250a0d27e7ab58803d.zip | |
nameserver should be static
Diffstat (limited to 'src/net')
| -rw-r--r-- | src/net/udp/dns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/udp/dns.c b/src/net/udp/dns.c index 2dac8ee95..b141eea42 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 ), }; |
