2
0
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:
Evan Hunt
2008-11-12 23:22:14 +00:00
parent 4d24561a64
commit ebf076feea
2 changed files with 5 additions and 1 deletions

View File

@@ -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.");