Whoops, typo.
authorTim Potter <tpot@samba.org>
Sun, 17 Feb 2002 18:56:30 +0000 (18:56 +0000)
committerTim Potter <tpot@samba.org>
Sun, 17 Feb 2002 18:56:30 +0000 (18:56 +0000)
(This used to be commit e7abb79fb304b34aeb369dc6deafa96dfd1e02f3)

source3/lib/util_sec.c

index ac808b7fef707e63599e7a3c30f5acfb5e0fd25a..f79da8d2e4eb55dc1d59b89eadd85e43f3c2babd 100644 (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);