diff options
author | Harsh Sharma <harsh.sharma@multitech.com> | 2020-02-26 13:10:59 -0600 |
---|---|---|
committer | Harsh Sharma <harsh.sharma@multitech.com> | 2020-02-26 13:10:59 -0600 |
commit | ca05c8e1ce5f902b3b40031bd6e7b952b21bc246 (patch) | |
tree | 56771e87d4406f0939e0ecd0473ce7b8f0a6b177 /src/Device | |
parent | 8d8091774f9292742284f0c5748c4bce8803e1d1 (diff) | |
download | mts-io-sysfs-ca05c8e1ce5f902b3b40031bd6e7b952b21bc246.tar.gz mts-io-sysfs-ca05c8e1ce5f902b3b40031bd6e7b952b21bc246.tar.bz2 mts-io-sysfs-ca05c8e1ce5f902b3b40031bd6e7b952b21bc246.zip |
Changed key macAddress2 to macAddress1
Diffstat (limited to 'src/Device')
-rw-r--r-- | src/Device/Device.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Device/Device.cpp b/src/Device/Device.cpp index 1da4a66..d3eb4ab 100644 --- a/src/Device/Device.cpp +++ b/src/Device/Device.cpp @@ -206,7 +206,7 @@ void Device::mapMacAddress2() { if (file.is_open()){ std::string line = ""; std::getline(file, line); - deviceInfoList["macAddress2"] = line; + deviceInfoList["macAddress1"] = line; } } |