summaryrefslogtreecommitdiff
path: root/x2p/find2perl.SH
diff options
context:
space:
mode:
Diffstat (limited to 'x2p/find2perl.SH')
-rw-r--r--x2p/find2perl.SH4
1 files changed, 2 insertions, 2 deletions
diff --git a/x2p/find2perl.SH b/x2p/find2perl.SH
index 7e49cd003f..4a95de04a1 100644
--- a/x2p/find2perl.SH
+++ b/x2p/find2perl.SH
@@ -68,11 +68,11 @@ while (@ARGV) {
die "Malformed -perm argument: $onum\n" unless $onum =~ /^-?[0-7]+$/;
if ($onum =~ s/^-//) {
$onum = '0' . sprintf("%o", oct($onum) & 017777); # s/b 07777 ?
- $out .= &tab . "(\$mode & $onum) == $onum";
+ $out .= &tab . "((\$mode & $onum) == $onum)";
}
else {
$onum = '0' . $onum unless $onum =~ /^0/;
- $out .= &tab . "(\$mode & 0777) == $onum";
+ $out .= &tab . "((\$mode & 0777) == $onum)";
}
}
elsif ($_ eq 'type') {