From 13651f4db78e4baa22b4b722344bc19fbf458a81 Mon Sep 17 00:00:00 2001 From: "malte.horst" Date: Sun, 10 Apr 2022 17:16:27 +0200 Subject: [PATCH] ignore DHCP option 11 --- common.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/common.c b/common.c index af474c4..d8d8cd8 100644 --- a/common.c +++ b/common.c @@ -1777,10 +1777,9 @@ dhcp6_get_options(p, ep, optinfo) optinfo->delayedauth_offset, optinfo->delayedauth_realmlen); break; -#ifdef notyet case DHCP6_AUTHPROTO_RECONFIG: + d_printf(LOG_DEBUG, FNAME, " ignoring not implemented authentication protocol: reconfig"); break; -#endif /* XXX */ case 0: // Discard auth @@ -1793,7 +1792,7 @@ dhcp6_get_options(p, ep, optinfo) default: d_printf(LOG_INFO, FNAME, "unsupported authentication protocol: %d", - *cp); + optinfo->authproto); goto fail; } break;