Krzysztow / modbus-utils

Modbus client and server command line tools based on libmodbus.
MIT License
35 stars 21 forks source link

Is it wrong check? #16

Open wangqg99 opened 9 months ago

wangqg99 commented 9 months ago

In file common/mbu_common.h, there is code snip as: case 'b': { rtuParams->baud = getInt(value, &ok); if (0 != ok) { printf("Baudrate is invalid %s", value); ok = 0; } Is it should be ? if (0 == ok) {