From 4323a13ae58f9be363847d58ae25733289d91205 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Sat, 21 Sep 2013 12:49:05 +0200 Subject: [PATCH] Handle NoAddrsAvail IA-status --- src/dhcpv6.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dhcpv6.c b/src/dhcpv6.c index ee2031d..f128ed8 100644 --- a/src/dhcpv6.c +++ b/src/dhcpv6.c @@ -755,7 +755,8 @@ static int dhcpv6_handle_reply(enum dhcpv6_msg orig, if (error) { syslog(LOG_WARNING, "Server returned IAID status %i!", error); - raise(SIGUSR2); + if (error != 2) + raise(SIGUSR2); break; } -- 2.39.2