Skip to content

Commit

Permalink
trim a comment which went beyond 80 columns
Browse files Browse the repository at this point in the history
  • Loading branch information
stspdotname committed Oct 11, 2024
1 parent fcd96d6 commit 731e161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion if.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 731e161

Please sign in to comment.