diff options
author | Thomas Markwalder <tmark@isc.org> | 2019-05-15 09:39:26 -0400 |
---|---|---|
committer | Thomas Markwalder <tmark@isc.org> | 2019-05-15 09:39:26 -0400 |
commit | 1c779d3b51f3ab9031b30d370ec398e1b5819137 (patch) | |
tree | 45fa5edfe4bcd506735a5dfaf919c60092fb4fe8 /includes/omapip | |
parent | 787b8c03684e82c4738fdb1c3a73349e7a412e76 (diff) | |
download | isc-dhcp-1c779d3b51f3ab9031b30d370ec398e1b5819137.tar.gz |
[#16,!9] Added missing NSUPDATE compilation logic
Added a release note.
client/dhclient.c
Only include dhclient_ddns_cb_free() if NSUPDATE is defined
includes/omapip/isclib.*
Only inlucde isc_result_t dns_client_init() if NSUPDATE is defined
Diffstat (limited to 'includes/omapip')
-rw-r--r-- | includes/omapip/isclib.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/omapip/isclib.h b/includes/omapip/isclib.h index 538b927f..7c807863 100644 --- a/includes/omapip/isclib.h +++ b/includes/omapip/isclib.h @@ -3,7 +3,7 @@ connections to the isc and dns libraries */ /* - * Copyright (c) 2009-2017 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2009-2019 by Internet Systems Consortium, Inc. ("ISC") * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -141,6 +141,8 @@ void isclib_cleanup(void); void dhcp_signal_handler(int signal); extern int shutdown_signal; +#if defined (NSUPDATE) isc_result_t dns_client_init(); +#endif #endif /* ISCLIB_H */ |