projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
b7c4737
)
I assume VMS doesn't have a superuser.
Ben Morrow [Tue, 20 Jan 2009 08:34:52 +0000 (08:34 +0000)]
lib/File/stat.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/File/stat.pm
b/lib/File/stat.pm
index
55d6c8a
..
4f34bf5
100644
(file)
--- a/
lib/File/stat.pm
+++ b/
lib/File/stat.pm
@@
-87,7
+87,7
@@
else {
my ($s, $mode, $eff) = @_;
my $uid = $eff ? $> : $<;
- $uid == 0 and return 1;
+ $^O ne "VMS" and $uid == 0 and return 1;
my ($stmode, $stuid, $stgid) = @$s[2,4,5];