Last of the spelling fixed

This commit is contained in:
chase
2018-04-18 04:43:05 -07:00
committed by Jon Trulson
parent 6d3a19d8f9
commit 33d2749ea3
185 changed files with 279 additions and 279 deletions

View File

@@ -206,14 +206,14 @@ main (int argc, char **argv)
/*
* Set uid up according to whether this is a secure system
* Secure systems need root priviledges to read the /etc/passwd file
* Secure systems need root privileges to read the /etc/passwd file
*/
smGD.runningUID = getuid();
#ifdef linux /* linux always needs to be setup as secure */
/*
* Save the root priviledge to be restored when trying to unlock
* Save the root privilege to be restored when trying to unlock
*/
smGD.unLockUID = geteuid();
smGD.secureSystem = True;
@@ -230,7 +230,7 @@ main (int argc, char **argv)
if(status == -1)
{
/*
* this is not a secure system - remove all suid priviledges
* this is not a secure system - remove all suid privileges
*/
smGD.unLockUID = smGD.runningUID;
smGD.secureSystem = False;
@@ -239,7 +239,7 @@ main (int argc, char **argv)
else
{
/*
* Save the root priviledge to be restored when trying to unlock
* Save the root privilege to be restored when trying to unlock
*/
smGD.unLockUID = geteuid();
smGD.secureSystem = True;