Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions UsersTable.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ void UsersTable_delete(UsersTable* this) {
}

char* UsersTable_getRef(UsersTable* this, unsigned int uid) {
#if !defined(BUILD_STATIC) || !defined(__GLIBC__)
char* name = Hashtable_get(this->users, uid);
if (name == NULL) {
const struct passwd* userData = getpwuid(uid);
Expand All @@ -39,6 +40,11 @@ char* UsersTable_getRef(UsersTable* this, unsigned int uid) {
}
}
return name;
#else
(void)this;
(void)uid;
return NULL;
#endif
}

inline void UsersTable_foreach(UsersTable* this, Hashtable_PairFunction f, void* userData) {
Expand Down