Skip to content

Commit 98e915e

Browse files
committed
typo
1 parent 2cb935c commit 98e915e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/iperf_client_api.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ create_client_timers(struct iperf_test * test)
208208
if (duration != 0) {
209209
/**
210210
* The duration of the measurement should only be overridden if it exceeds the duration set by the server or
211-
* of no duration is set on the server.
211+
* if no duration is set on the server.
212212
*
213213
*/
214214
if (test->server_duration > 0 && test->server_duration < duration) {
@@ -220,7 +220,7 @@ create_client_timers(struct iperf_test * test)
220220
if (test->timer == NULL) {
221221
i_errno = IEINITTEST;
222222
return -1;
223-
}
223+
}
224224
}
225225

226226
if (test->stats_interval != 0) {

src/iperf_server_api.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ create_server_timers(struct iperf_test * test)
360360
if (duration != 0 ) {
361361
/**
362362
* The duration of the measurement should only be overridden if it exceeds the duration set by the server or
363-
* of no duration is set on the server.
363+
* if no duration is set on the server.
364364
*
365365
*/
366366
if (test->server_duration > 0 && test->server_duration < duration) {

0 commit comments

Comments
 (0)