summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/lib/username.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/lib/username.c b/source3/lib/username.c
index f5fbd31e11..a3ee871423 100644
--- a/source3/lib/username.c
+++ b/source3/lib/username.c
@@ -228,6 +228,9 @@ static BOOL have_passwd_hash(void)
struct passwd *hashed_getpwnam(const char *name)
{
+#ifndef USE_HASHED_GETPWNAM
+ return getpwnam(name);
+#else
struct passwd_hash_table_s *pht=&passwd_hash_table;
DEBUG(5,("getpwnam(%s)\n", name));
@@ -257,6 +260,7 @@ struct passwd *hashed_getpwnam(const char *name)
}
/* Fall back to real getpwnam() */
return getpwnam(name);
+#endif
}
/*******************************************************************