Fix the order of arguments in the usage message of
Rafael Garcia-Suarez [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

index b6b8934..08a6f74 100644 (file)
@@ -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]);
 }