Merged revision(s) 3102 from branches/releases/bacnet-stack-0-8-0:

Changed info prints to go to stdout rather than stderr to clean up Wireshark extcap usage.
........
This commit is contained in:
skarg
2017-01-04 18:55:24 +00:00
parent 18c7020659
commit 79af8b60df
+2 -2
View File
@@ -118,7 +118,7 @@ void RS485_Set_Interface(
if (strncmp("COM", ifname, 3) == 0) {
if (strlen(ifname) > 3) {
sprintf(RS485_Port_Name, "\\\\.\\COM%i", atoi(ifname + 3));
fprintf(stderr, "Adjusted interface name to %s\r\n",
fprintf(stdout, "Adjusted interface name to %s\r\n",
RS485_Port_Name);
}
}
@@ -286,7 +286,7 @@ void RS485_Initialize(
}
RS485_Configure_Status();
#if PRINT_ENABLED
fprintf(stderr, "RS485 Interface: %s\n", RS485_Port_Name);
fprintf(stdout, "RS485 Interface: %s\n", RS485_Port_Name);
#endif
atexit(RS485_Cleanup);