From f48dfdf17486533a23411a3f71239c72d3aab2f0 Mon Sep 17 00:00:00 2001 From: Thomas Markwalder Date: Thu, 8 Jan 2015 14:09:59 -0500 Subject: [PATCH] [master] Fixed minor compilation complaint in server/dhcpv6 --- RELNOTES | 1 + server/dhcpv6.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELNOTES b/RELNOTES index 69400ba8..c70efd43 100644 --- a/RELNOTES +++ b/RELNOTES @@ -244,6 +244,7 @@ by Eric Young (eay@cryptsoft.com). no such prefixes were available, the server returned a status of none available. Note the default mode, "exact", provides this same behavior. [ISC-Bugs #36780] + [ISC-Bugs #32228] Changes since 4.3.1b1 diff --git a/server/dhcpv6.c b/server/dhcpv6.c index 6209d0f7..984734aa 100644 --- a/server/dhcpv6.c +++ b/server/dhcpv6.c @@ -1188,7 +1188,7 @@ pick_v6_address(struct reply_state *reply) */ for (pond = reply->shared->ipv6_pond; pond != NULL; pond = pond->next) { - isc_result_t result; + isc_result_t result = ISC_R_FAILURE; if (((pond->prohibit_list != NULL) && (permitted(reply->packet, pond->prohibit_list))) ||