summaryrefslogtreecommitdiff
path: root/src/share/common
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@finestructure.net>2009-04-05 19:41:13 -0700
committerJameson Graef Rollins <jrollins@finestructure.net>2009-04-05 19:41:13 -0700
commit792b299e0850dfa3ab1072760f9e82febd81c366 (patch)
tree4dc8d83f3a9092a47f8be6c25a322a6dc938da02 /src/share/common
parent6d274a5eadc7bcf543b87945472f910e2a6a67c7 (diff)
fix typo in check_key_file_permissions function
Diffstat (limited to 'src/share/common')
-rw-r--r--src/share/common2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/common b/src/share/common
index 04fe4fe..1ce07fc 100644
--- a/src/share/common
+++ b/src/share/common
@@ -445,7 +445,7 @@ check_key_file_permissions() {
# return 2 if path has group or other writability
if is_write "$gAccess" || is_write "$oAccess" ; then
log error "improper group or other writability on path '$path':"
- log error " group: $gAccess, other: $oAcess"
+ log error " group: $gAccess, other: $oAccess"
return 2
fi