commit 731e161842282fb84808712dcea8d05a9a7918fb from: Stefan Sperling date: Fri Oct 11 17:43:14 2024 UTC trim a comment which went beyond 80 columns commit - fcd96d69b52c17e31c79584592eda14b6da359c3 commit + 731e161842282fb84808712dcea8d05a9a7918fb blob - aa4aaa5a130799485cd1aafb66606e7136402052 blob + cd9996fc9a6116045ebadf27b4639ef38ebbb30f --- if.c +++ if.c @@ -2381,7 +2381,7 @@ intparent(char *ifname, int ifs, int argc, char **argv if (errno == EBUSY) { int flags = get_ifflags(ifname, ifs); if (flags & IFF_UP) { - /* Toggle interface down and retry. and bring the interface back up*/ + /* Put interface down, retry, and put it up. */ set_ifflags(ifname, ifs, flags & ~IFF_UP); ret = ioctl(ifs, cmd, &ifp); set_ifflags(ifname, ifs, flags);