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/auth | |
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/auth')
-rw-r--r-- | source3/auth/token_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/auth/token_util.c b/source3/auth/token_util.c index 87f57b66ee..a84bcc1247 100644 --- a/source3/auth/token_util.c +++ b/source3/auth/token_util.c @@ -94,9 +94,9 @@ struct security_token *get_root_nt_token( void ) } if ( !(pw = sys_getpwuid(0)) ) { - if ( !(pw = sys_getpwnam("root")) ) { + if ( !(pw = getpwnam("root")) ) { DEBUG(0,("get_root_nt_token: both sys_getpwuid(0) " - "and sys_getpwnam(\"root\") failed!\n")); + "and getpwnam(\"root\") failed!\n")); return NULL; } } |