|
@@ -220,16 +220,14 @@ void scan_mystic_log(void) {
|
|
|
pos = line.find(" logged in");
|
|
|
if (pos != std::string::npos) {
|
|
|
--pos;
|
|
|
- size_t len = line.rfind(' ', pos);
|
|
|
- if (len != std::string::npos) {
|
|
|
- len++;
|
|
|
- username = line.substr(len, pos + 1 - len);
|
|
|
- ZF_LOGE("User: %s", (const char *)username.c_str());
|
|
|
- // verify this works, lookup
|
|
|
- locate_user(username.c_str());
|
|
|
- ZF_LOGE("Username: [%s] A.K.A. [%s]", (const char *)username.c_str(),
|
|
|
- (const char *)fullname.c_str());
|
|
|
- }
|
|
|
+ size_t len = 20;
|
|
|
+ // position 20 is right after date/time
|
|
|
+ username = line.substr(20, pos + 1 - len);
|
|
|
+ ZF_LOGE("User: %s", (const char *)username.c_str());
|
|
|
+ // verify this works, lookup
|
|
|
+ locate_user(username.c_str());
|
|
|
+ ZF_LOGE("Username: [%s] A.K.A. [%s]", (const char *)username.c_str(),
|
|
|
+ (const char *)fullname.c_str());
|
|
|
}
|
|
|
} while (again);
|
|
|
}
|