diff options
Diffstat (limited to 'bin/inotifymask')
-rw-r--r-- | bin/inotifymask | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/inotifymask b/bin/inotifymask index 19e1b0a..d5bfcb0 100644 --- a/bin/inotifymask +++ b/bin/inotifymask @@ -9,7 +9,7 @@ use Const::Fast; use File::stat; use Linux::Inotify2; -our $VERSION = '0.04'; +our $VERSION = '0.05'; const our $SELF => 'inotifymask'; @@ -55,7 +55,7 @@ my $cb = sub { for ( $mode & ~$mask ) { chmod $_, $name or return; - printf {*STDERR} "secured %s %o\n", $name, $_; + printf {*STDERR} "masked %s %04o\n", $name, $_; } }; |