Browse Source

Return 1 (true) if actually found.

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

+ 4 - 1
hharry.cpp

@@ -147,9 +147,12 @@ int locate_user(const char *alias) {
   // Carry on!
   while (fread(buffer, 0x600, 1, user) == 1) {
     pcopy(buffer + 0x6d, temp);
+    // ZF_LOGE("Is [%s] == [%s] ?", temp, alias);
     if (strcasecmp(temp, username.c_str()) == 0) {
       pcopy(buffer + 0x8c, temp);
       fullname.assign(temp);
+      fclose(user);
+      return 1;
       break;
     }
     /*
@@ -159,7 +162,7 @@ int locate_user(const char *alias) {
     */
   }
   fclose(user);
-  return 1;
+  return 0;
 }
 
 std::ifstream logfile;