diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2020-04-30 13:28:45 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2020-04-30 13:28:45 +1200 |
commit | e9af6c6a6ad0fe17d484454646a2f0652fb14017 (patch) | |
tree | ba6ad2e795f1404df94ad9918e1a8da1d7d3ef5e /bin/inotifymask | |
parent | Merge branch 'hotfix/v0.04' (diff) | |
parent | Bump VERSION (diff) | |
download | inotifymask-0.05.tar.gz (sig) inotifymask-0.05.zip |
Merge branch 'hotfix/v0.05'v0.05
* hotfix/v0.05:
Adjust log message for clarity
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, $_; } }; |