aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-04-30 13:28:45 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-04-30 13:28:45 +1200
commite9af6c6a6ad0fe17d484454646a2f0652fb14017 (patch)
treeba6ad2e795f1404df94ad9918e1a8da1d7d3ef5e
parentMerge branch 'hotfix/v0.04' (diff)
parentBump VERSION (diff)
downloadinotifymask-0.05.tar.gz (sig)
inotifymask-0.05.zip
Merge branch 'hotfix/v0.05'v0.05
* 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, $_;
}
};