summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
Diffstat (limited to 'source3')
-rw-r--r--source3/auth/token_util.c4
-rw-r--r--source3/lib/username.c4
-rw-r--r--source3/rpc_server/srvsvc/srv_srvsvc_nt.c2
3 files changed, 5 insertions, 5 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;
}
}
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
diff --git a/source3/rpc_server/srvsvc/srv_srvsvc_nt.c b/source3/rpc_server/srvsvc/srv_srvsvc_nt.c
index 4435b996da..c9f8ceb6f8 100644
--- a/source3/rpc_server/srvsvc/srv_srvsvc_nt.c
+++ b/source3/rpc_server/srvsvc/srv_srvsvc_nt.c
@@ -906,7 +906,7 @@ static WERROR init_srv_sess_info_1(struct pipes_struct *p,
for (; resume_handle < *total_entries; resume_handle++) {
uint32 num_files;
uint32 connect_time;
- struct passwd *pw = sys_getpwnam(session_list[resume_handle].username);
+ struct passwd *pw = getpwnam(session_list[resume_handle].username);
bool guest;
if ( !pw ) {