diff options
author | Jameson Rollins <jrollins@finestructure.net> | 2010-07-04 00:15:02 -0400 |
---|---|---|
committer | Jameson Rollins <jrollins@finestructure.net> | 2010-07-04 00:15:02 -0400 |
commit | 330d2eca0d43bcf54b535212d56d4a5b1b218ced (patch) | |
tree | 5cfd89a1191c228b9d4577568addb96dc370a19c | |
parent | bd2a2efb7b2b623d184c489f765b14aadf85ac20 (diff) |
fix debug message in checkperms
-rwxr-xr-x | src/share/checkperms | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/checkperms b/src/share/checkperms index aa67d96..3f8ad56 100755 --- a/src/share/checkperms +++ b/src/share/checkperms @@ -88,7 +88,7 @@ sub permissions_ok { # OpenSSH sources for an explanation of this bailout (see also # monkeysphere #675): if ($path eq $user->dir) { - mslog('DEBUG', "stopping at the %s's home directory '%s'\n", $user->name, $path); + mslog('DEBUG', "stopping at %s's home directory '%s'\n", $user->name, $path); return undef; } |