projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c85d12
)
Fix the order of arguments in the usage message of
author
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Mon, 15 Mar 2004 21:54:56 +0000
(21:54 +0000)
committer
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Mon, 15 Mar 2004 21:54:56 +0000
(21:54 +0000)
POSIX::chown(). It's different from the POSIX order but
it's the same than CORE::chown(). Damn.
p4raw-id: //depot/perl@22502
ext/POSIX/POSIX.pm
patch
|
blob
|
history
diff --git
a/ext/POSIX/POSIX.pm
b/ext/POSIX/POSIX.pm
index
b6b8934
..
08a6f74
100644
(file)
--- a/
ext/POSIX/POSIX.pm
+++ b/
ext/POSIX/POSIX.pm
@@
-623,7
+623,7
@@
sub chdir {
}
sub chown {
- usage "chown(
filename, uid, gid
)" if @_ != 3;
+ usage "chown(
uid, gid, filename
)" if @_ != 3;
CORE::chown($_[0], $_[1], $_[2]);
}