summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Klug <john.klug@multitech.com>2018-10-04 13:54:21 -0500
committerJohn Klug <john.klug@multitech.com>2018-10-04 13:54:21 -0500
commitd2a70d9285ca3339fa9df44b83cfe9bc0d5ce8b7 (patch)
treea928afadc61f9d9f6d8c6477cd472282dd9d2486
parentdcb1b3e09143cf9146a905edb451010c0aa0b127 (diff)
downloadmts-io-2.2.2.tar.gz
mts-io-2.2.2.tar.bz2
mts-io-2.2.2.zip
Fix typo in MTAC-ETH error message2.2.2
-rw-r--r--io-module/mtac_eth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io-module/mtac_eth.c b/io-module/mtac_eth.c
index 7a35ea5..99e8c1d 100644
--- a/io-module/mtac_eth.c
+++ b/io-module/mtac_eth.c
@@ -4,7 +4,7 @@ static char* eth_gpio_pin_name_by_attr_name(const char* name, int port) {
if (! strcmp(name, "reset")) {
return "ap1-reset";
} else {
- log_error("attribute name [%s] is invalid for LORA in port %d", name, port);
+ log_error("attribute name [%s] is invalid for ETH in port %d", name, port);
return "";
}
@@ -12,7 +12,7 @@ static char* eth_gpio_pin_name_by_attr_name(const char* name, int port) {
if (! strcmp(name, "reset")) {
return "ap2-reset";
} else {
- log_error("attribute name [%s] is invalid for LORA in port %d", name, port);
+ log_error("attribute name [%s] is invalid for ETH in port %d", name, port);
return "";
}
}