aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2010-09-16 19:56:34 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2010-09-16 19:56:34 +0000
commit593d58c97f72989253712af5b595eec13c551252 (patch)
tree74f083e341666a67b2e7401f5f1ec0bdede47d64
parent784e52515253dba9c527a8aa84df8e1a22d08f0b (diff)
More typos.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34139 f5534014-38df-0310-8fa8-9805f1628bb7
-rw-r--r--wsutil/privileges.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/wsutil/privileges.c b/wsutil/privileges.c
index c0ae08d479..8dc5177737 100644
--- a/wsutil/privileges.c
+++ b/wsutil/privileges.c
@@ -160,7 +160,7 @@ npf_sys_is_running() {
static uid_t ruid, euid;
static gid_t rgid, egid;
-static gboolean init_process_polices_called = FALSE;
+static gboolean init_process_policies_called = FALSE;
/*
* Called when the program starts, to save whatever credential information
@@ -175,7 +175,7 @@ init_process_policies(void)
rgid = getgid();
egid = getegid();
- init_process_polices_called = TRUE;
+ init_process_policies_called = TRUE;
}
/*
@@ -185,7 +185,7 @@ init_process_policies(void)
gboolean
started_with_special_privs(void)
{
- g_assert(init_process_polices_called);
+ g_assert(init_process_policies_called);
#ifdef HAVE_ISSETUGID
return issetugid();
#else