summaryrefslogtreecommitdiff
path: root/source3/auth/token_util.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-08-21 21:08:02 -0700
committerJeremy Allison <jra@samba.org>2009-08-21 21:08:02 -0700
commit47c7063dc62dc06d0cdd50e1946c088f8bf1ee1d (patch)
treec29a251ebc5751caa64967df720c97d72e33f11b /source3/auth/token_util.c
parent497234c1cbded9855b817114a6517c58daa25805 (diff)
downloadsamba-47c7063dc62dc06d0cdd50e1946c088f8bf1ee1d.tar.gz
samba-47c7063dc62dc06d0cdd50e1946c088f8bf1ee1d.tar.bz2
samba-47c7063dc62dc06d0cdd50e1946c088f8bf1ee1d.zip
Try and fix the buildfarm by using getpwnam(root) instead
of getpwuid(0) if DEVELOPER is defined. I'm hoping the build farm defines DEVELOPER... Jeremy.
Diffstat (limited to 'source3/auth/token_util.c')
-rw-r--r--source3/auth/token_util.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/auth/token_util.c b/source3/auth/token_util.c
index 8e8e604702..45b0fe2938 100644
--- a/source3/auth/token_util.c
+++ b/source3/auth/token_util.c
@@ -91,10 +91,17 @@ NT_USER_TOKEN *get_root_nt_token( void )
cache_data, struct nt_user_token);
}
+#if defined(DEVELOPER)
+ if ( !(pw = sys_getpwnam("root")) ) {
+ DEBUG(0,("get_root_nt_token: sys_getpwnam(\"root\") failed!\n"));
+ return NULL;
+ }
+#else
if ( !(pw = sys_getpwuid(0)) ) {
DEBUG(0,("get_root_nt_token: sys_getpwuid(0) failed!\n"));
return NULL;
}
+#endif
/* get the user and primary group SIDs; although the
BUILTIN\Administrators SId is really the one that matters here */