aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-04-30 13:29:02 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-04-30 13:29:02 +1200
commit59a392aab49c854e91daf8df8718ea1d7ffab365 (patch)
treeba6ad2e795f1404df94ad9918e1a8da1d7d3ef5e
parentMerge branch 'hotfix/v0.04' into develop (diff)
parentBump VERSION (diff)
downloadinotifymask-59a392aab49c854e91daf8df8718ea1d7ffab365.tar.gz
inotifymask-59a392aab49c854e91daf8df8718ea1d7ffab365.zip
Merge branch 'hotfix/v0.05' into develop
* hotfix/v0.05: Adjust log message for clarity
-rw-r--r--bin/inotifymask4
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, $_;
}
};