Compare commits

..

No commits in common. 'de19cc15660156d7106418c9648312dd9c1753a2' and '493fa1c508a7b4be2ad04eec6eed44f093ec5525' have entirely different histories.

1
.gitignore vendored

@ -6,5 +6,4 @@ config.h
*.oo *.oo
testmodbus-server testmodbus-server
testmodbus-server.exe testmodbus-server.exe
default.modbus

@ -1,5 +1,3 @@
2022-10-31:
- fixed use of uninitialized and wrong value.
2022-05-30: 2022-05-30:
- display issues with signed and unsigned int16 in the values tab. - display issues with signed and unsigned int16 in the values tab.

@ -233,7 +233,7 @@ int TCP::Connect() {
err = getaddrinfo(remote_host.c_str(), remote_port.c_str(), &hints, &res); err = getaddrinfo(remote_host.c_str(), remote_port.c_str(), &hints, &res);
if (err != 0) { if (err != 0) {
fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(err)); fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(s));
return 0; return 0;
} }

Loading…
Cancel
Save