Index: filed.c ================================================================== --- filed.c +++ filed.c @@ -745,11 +745,11 @@ /* Resolve a username to a UID */ static int filed_user_lookup(const char *user, uid_t *user_id) { char *next; uid_t user_id_check; -#ifndef NO_GETPWNAM +#ifndef FILED_NO_GETPWNAM struct passwd *ent; ent = getpwnam(user); if (ent != NULL) { *user_id = ent->pw_uid;