mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-31 06:15:55 +00:00
A missing "else" in dhcrelay.c could have caused an interface not to
be recognized. [rt18887]
This commit is contained in:
@@ -1384,7 +1384,7 @@ process_up6(struct packet *packet, struct stream_list *dp) {
|
||||
|
||||
if (dp) {
|
||||
if_id = dp->id;
|
||||
} if (!downstreams->next) {
|
||||
} else if (!downstreams->next) {
|
||||
if_id = downstreams->id;
|
||||
} else {
|
||||
log_info("Don't know the interface.");
|
||||
|
Reference in New Issue
Block a user