Replacing C++-style comments with C-style comments.
Signed-off-by: "Adriano Marto Reis" <adrianomarto@gmail.com>
babel_ifp = babel_get_if_nfo(ifp);
assert (babel_ifp != NULL);
- babel_ifp->rtt_min =
- rtt
- * 1000; // value entered in milliseconds and stored as microseconds
+ /* The value is entered in milliseconds but stored as microseconds. */
+ babel_ifp->rtt_min = rtt * 1000;
return CMD_SUCCESS;
}
babel_ifp = babel_get_if_nfo(ifp);
assert (babel_ifp != NULL);
- babel_ifp->rtt_max =
- rtt
- * 1000; // value entered in milliseconds and stored as microseconds
+ /* The value is entered in milliseconds but stored as microseconds. */
+ babel_ifp->rtt_max = rtt * 1000;
return CMD_SUCCESS;
}