]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
[master] Fixed minor compilation complaint in server/dhcpv6
authorThomas Markwalder <tmark@isc.org>
Thu, 8 Jan 2015 19:09:59 +0000 (14:09 -0500)
committerThomas Markwalder <tmark@isc.org>
Thu, 8 Jan 2015 19:09:59 +0000 (14:09 -0500)
RELNOTES
server/dhcpv6.c

index 69400ba85e33e5c28087819b94f6dd489fdc0555..c70efd43c701e0cf7d2167cd2d2f777a2884dbe3 100644 (file)
--- 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
 
index 6209d0f76adeed68b15423ad840b257bd9390eba..984734aae12b841deee8d9249a1601e2cba06645 100644 (file)
@@ -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))) ||