aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/privileges.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-06-30 16:02:57 -0700
committerGuy Harris <guy@alum.mit.edu>2014-06-30 23:03:22 +0000
commitac88f7122055a5d352734ef63628fed8d57749b3 (patch)
tree3c2283fa4b095f47af3cdde9fe37f4f9fb24bba0 /wsutil/privileges.c
parent62fa030a03aed54f7fd8b877a6c1c5639f23ec7c (diff)
Clean up a comment.
SetProcessDEPPolicy() is the API; PSetProcessDEPPolicy is just a local pointer variable that either points to that API's implementation (if it's available) or is null (if it isn't). Change-Id: I676fbb75019e32af511cefa6f1c7b7124ac9d8e8 Reviewed-on: https://code.wireshark.org/review/2735 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wsutil/privileges.c')
-rw-r--r--wsutil/privileges.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wsutil/privileges.c b/wsutil/privileges.c
index c8197427ef..7050e0fdf3 100644
--- a/wsutil/privileges.c
+++ b/wsutil/privileges.c
@@ -55,7 +55,7 @@ init_process_policies(void)
* If we have SetProcessDEPPolicy(), turn "data execution
* prevention" on - i.e., if the MMU lets you set execute
* permission on a per-page basis, turn execute permission
- * off on most data pages. PSetProcessDEPPolicy() fails on
+ * off on most data pages. SetProcessDEPPolicy() fails on
* 64-bit Windows (it's *always* on there), but if it fails,
* we don't care (we did our best), so we don't check for
* errors.