Skip to content

Commit 44e4ac6

Browse files
committed
dhcpcd: ignore ENXIO on handlelink
1 parent 958279d commit 44e4ac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dhcpcd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1145,7 +1145,7 @@ dhcpcd_handlelink(void *arg, unsigned short events)
11451145
dhcpcd_linkoverflow(ctx);
11461146
return;
11471147
}
1148-
if (errno != ENOTSUP)
1148+
if (errno != ENOTSUP && errno != ENXIO)
11491149
logerr(__func__);
11501150
}
11511151
}

0 commit comments

Comments
 (0)