summaryrefslogtreecommitdiffstats
path: root/usr.sbin/nsd/nsd.c
diff options
context:
space:
mode:
authorflorian <florian@openbsd.org>2017-02-17 20:04:45 +0000
committerflorian <florian@openbsd.org>2017-02-17 20:04:45 +0000
commitfe5fe5f6cfa8bb64bb38bafa85c14c1d131dfe6d (patch)
tree45b00c569386cd492431a724f9097b87e41209b3 /usr.sbin/nsd/nsd.c
parentFix up and use the device memory attribute for device mappings. Add (diff)
downloadwireguard-openbsd-fe5fe5f6cfa8bb64bb38bafa85c14c1d131dfe6d.tar.xz
wireguard-openbsd-fe5fe5f6cfa8bb64bb38bafa85c14c1d131dfe6d.zip
Update to 4.1.15.
This contains a local patch to query.c (missed _t conversion) that has been submitted upstream. OK sthen
Diffstat (limited to 'usr.sbin/nsd/nsd.c')
-rw-r--r--usr.sbin/nsd/nsd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/nsd/nsd.c b/usr.sbin/nsd/nsd.c
index f9643862a44..f2cf6ccf0cb 100644
--- a/usr.sbin/nsd/nsd.c
+++ b/usr.sbin/nsd/nsd.c
@@ -49,7 +49,7 @@
/* The server handler... */
struct nsd nsd;
static char hostname[MAXHOSTNAMELEN];
-extern config_parser_state_t* cfg_parser;
+extern config_parser_state_type* cfg_parser;
static void error(const char *format, ...) ATTR_FORMAT(printf, 1, 2);
@@ -630,7 +630,7 @@ main(int argc, char *argv[])
#endif /* INET6 */
if(nsd.options->ip_addresses)
{
- ip_address_option_t* ip = nsd.options->ip_addresses;
+ ip_address_option_type* ip = nsd.options->ip_addresses;
while(ip) {
add_interface(&nodes, &nsd, ip->address);
ip = ip->next;