summaryrefslogtreecommitdiff
path: root/src/share/common
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2009-03-01 17:11:59 -0500
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2009-03-01 17:11:59 -0500
commit7b64ab42881f4702b6a7800dc06c94a742109fda (patch)
tree55b93a0198bae90a69288a250711079afd10560b /src/share/common
parent750314da835f95fa4db35e5715508c6a551dfac9 (diff)
switched $USER to $FILE_OWNER; new name is more semantically clear and less likely to collide with other common uses of $USER.
Diffstat (limited to 'src/share/common')
-rw-r--r--src/share/common6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/share/common b/src/share/common
index c6d6b8e..dd5dc16 100644
--- a/src/share/common
+++ b/src/share/common
@@ -846,7 +846,7 @@ update_known_hosts() {
(umask 0022 && touch "$KNOWN_HOSTS")
# check permissions on the known_hosts file path
- check_key_file_permissions "$USER" "$KNOWN_HOSTS" || failure
+ check_key_file_permissions "$FILE_OWNER" "$KNOWN_HOSTS" || failure
# create a lockfile on known_hosts:
lock create "$KNOWN_HOSTS"
@@ -1000,7 +1000,7 @@ update_authorized_keys() {
log debug " $AUTHORIZED_KEYS"
# check permissions on the authorized_keys file path
- check_key_file_permissions "$USER" "$AUTHORIZED_KEYS" || failure
+ check_key_file_permissions "$FILE_OWNER" "$AUTHORIZED_KEYS" || failure
# create a lockfile on authorized_keys
lock create "$AUTHORIZED_KEYS"
@@ -1076,7 +1076,7 @@ process_authorized_user_ids() {
log debug " $authorizedUserIDs"
# check permissions on the authorized_user_ids file path
- check_key_file_permissions "$USER" "$authorizedUserIDs" || failure
+ check_key_file_permissions "$FILE_OWNER" "$authorizedUserIDs" || failure
if ! meat "$authorizedUserIDs" > /dev/null ; then
log debug " no user IDs to process."