2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-14 15:21:32 +00:00

nameserver should be static

This commit is contained in:
Michael Brown 2007-07-17 01:21:20 +01:00
parent 7df3d4a177
commit f44969f7df
2 changed files with 1 additions and 3 deletions

View File

@ -87,6 +87,4 @@ union dns_rr_info {
struct dns_rr_info_cname cname;
};
extern struct sockaddr_tcpip nameserver;
#endif /* _GPXE_DNS_H */

View File

@ -40,7 +40,7 @@
*/
/** The DNS server */
struct sockaddr_tcpip nameserver = {
static struct sockaddr_tcpip nameserver = {
.st_port = htons ( DNS_PORT ),
};