From 43f275008f1d68c6adee461c531d73c65b6b7483 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 24 Mar 2012 15:25:05 +0100 Subject: lib/util: Remove dummy wrapper for getpwuid(). --- source3/auth/token_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/auth') diff --git a/source3/auth/token_util.c b/source3/auth/token_util.c index a84bcc1247..4a88a6bb72 100644 --- a/source3/auth/token_util.c +++ b/source3/auth/token_util.c @@ -93,9 +93,9 @@ struct security_token *get_root_nt_token( void ) cache_data, struct security_token); } - if ( !(pw = sys_getpwuid(0)) ) { + if ( !(pw = getpwuid(0)) ) { if ( !(pw = getpwnam("root")) ) { - DEBUG(0,("get_root_nt_token: both sys_getpwuid(0) " + DEBUG(0,("get_root_nt_token: both getpwuid(0) " "and getpwnam(\"root\") failed!\n")); return NULL; } -- cgit