commit - fcd96d69b52c17e31c79584592eda14b6da359c3
commit + 731e161842282fb84808712dcea8d05a9a7918fb
blob - aa4aaa5a130799485cd1aafb66606e7136402052
blob + cd9996fc9a6116045ebadf27b4639ef38ebbb30f
--- if.c
+++ if.c
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);