babeld: C-style comments

Replacing C++-style comments with C-style comments.

Signed-off-by: "Adriano Marto Reis" <adrianomarto@gmail.com>
This commit is contained in:
Adriano Marto Reis 2021-12-07 18:18:33 +10:00
parent a665be6a88
commit 896cf5c5f2

View File

@ -484,9 +484,8 @@ DEFUN (babel_set_rtt_min,
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;
}
@ -506,9 +505,8 @@ DEFUN (babel_set_rtt_max,
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;
}