Browse Source

Fixed names with spaces.

root 4 years ago
parent
commit
1dd5fbc369
1 changed files with 8 additions and 10 deletions
  1. 8 10
      hharry.cpp

+ 8 - 10
hharry.cpp

@@ -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);
   }