diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-03-24 15:24:15 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-03-24 15:24:15 +0100 |
commit | 818e0722e1a730cfa30d911be510641ef23dc446 (patch) | |
tree | 584a8e1a0682c8dbafd92139b1b51c0686d53681 /source3/lib | |
parent | 3be6258912939fb538d7bcb492483ae2ab52391b (diff) | |
download | samba-818e0722e1a730cfa30d911be510641ef23dc446.tar.gz samba-818e0722e1a730cfa30d911be510641ef23dc446.tar.bz2 samba-818e0722e1a730cfa30d911be510641ef23dc446.zip |
lib/util: Remove dummy wrapper for getpwnam().
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/username.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/username.c b/source3/lib/username.c index 925b44bb06..5192004365 100644 --- a/source3/lib/username.c +++ b/source3/lib/username.c @@ -42,7 +42,7 @@ static struct passwd *getpwnam_alloc_cached(TALLOC_CTX *mem_ctx, const char *nam return tcopy_passwd(mem_ctx, pw); } - pw = sys_getpwnam(name); + pw = getpwnam(name); if (pw == NULL) { return NULL; } @@ -92,7 +92,7 @@ char *get_user_home_dir(TALLOC_CTX *mem_ctx, const char *user) } /**************************************************************************** - * A wrapper for sys_getpwnam(). The following variations are tried: + * A wrapper for getpwnam(). The following variations are tried: * - as transmitted * - in all lower case if this differs from transmitted * - in all upper case if this differs from transmitted |