summaryrefslogtreecommitdiff
path: root/lib/common
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2006-10-13 23:40:49 +0000
committerChris Wilson <chris+github@qwirx.com>2006-10-13 23:40:49 +0000
commit6ccf5c3b20553d950fa5673d6edebcc9b1dfe3d1 (patch)
tree3ed9558503a2439842b6a32851212c406185805e /lib/common
parent1144c2c17e9329a57bc21a120d2782fb515f69e9 (diff)
* Spelling fixes
Diffstat (limited to 'lib/common')
-rw-r--r--lib/common/UnixUser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common/UnixUser.cpp b/lib/common/UnixUser.cpp
index df2d0ddd..5419d8f8 100644
--- a/lib/common/UnixUser.cpp
+++ b/lib/common/UnixUser.cpp
@@ -69,7 +69,7 @@ UnixUser::UnixUser(uid_t UID, gid_t GID)
//
// Function
// Name: UnixUser::~UnixUser()
-// Purpose: Destructor -- reverts to previous user if the change wasn't perminant
+// Purpose: Destructor -- reverts to previous user if the change wasn't permanant
// Created: 21/1/04
//
// --------------------------------------------------------------------------
@@ -112,7 +112,7 @@ void UnixUser::ChangeProcessUser(bool Temporary)
}
else
{
- // Change perminantely (change all UIDs and GIDs)
+ // Change permanently (change all UIDs and GIDs)
if(::setgid(mGID) != 0
|| ::setuid(mUID) != 0)
{