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