1
1

Reverse the order of tests for better legibility and logical sense.

Suggested by @pprindeville.
Этот коммит содержится в:
Bruce A. Mah 2017-09-19 09:14:24 -07:00
родитель d6a6751746
Коммит ca954c7668
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4984910A8CAAEE8A

Просмотреть файл

@ -382,8 +382,8 @@ iperf_connect(struct iperf_test *test)
* Regardless of whether explicitly or implicitly set, if the
* block size is larger than the MSS, print a warning.
*/
if (test->settings->blksize > test->ctrl_sck_mss &&
test->ctrl_sck_mss > 0) {
if (test->ctrl_sck_mss > 0 &&
test->settings->blksize > test->ctrl_sck_mss) {
char str[128];
snprintf(str, sizeof(str),
"UDP block size %d exceeds TCP MSS %d, may result in fragmentation / drops", test->settings->blksize, test->ctrl_sck_mss);