1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-30 19:42:05 +03:00

Whoops, typo.

(This used to be commit e7abb79fb3)
This commit is contained in:
Tim Potter
2002-02-17 18:56:30 +00:00
parent 5536284706
commit 606fdc7c5c

View File

@ -59,7 +59,7 @@ void sec_init(void)
initial_uid = geteuid();
initial_gid = getegid();
sec_initialise = True;
sec_initialised = True;
}
/****************************************************************************
@ -67,7 +67,7 @@ some code (eg. winbindd) needs to know what uid we started as
****************************************************************************/
uid_t sec_initial_uid(void)
{
if (!sec_initialise)
if (!sec_initialised)
smb_panic("sec_initial_uid() called before sec_init()\n");
return initial_uid;
@ -78,7 +78,7 @@ some code (eg. winbindd, profiling shm) needs to know what gid we started as
****************************************************************************/
gid_t sec_initial_gid(void)
{
if (!sec_initialise)
if (!sec_initialised)
smb_panic("sec_initial_gid() called before sec_init()\n");
return initial_gid;
@ -89,7 +89,7 @@ are we running in non-root mode?
****************************************************************************/
BOOL non_root_mode(void)
{
if (!sec_initialise)
if (!sec_initialised)
smb_panic("non_root_mode() called before sec_init()\n");
return (initial_uid != (uid_t)0);