perldoc -f stat (perlfunc.pod)
authorBrendan O'Dea <bod@debian.org>
Mon, 23 Sep 2002 22:45:40 +0000 (08:45 +1000)
committerhv <hv@crypt.org>
Thu, 26 Sep 2002 07:51:10 +0000 (07:51 +0000)
From: "Brendan O'Dea" <bod@debian.org>
Message-ID: <20020923124540.GB28031@londo.odea.dropbear.id.au>

p4raw-id: //depot/perl@17918

pod/perlfunc.pod

index 53ac84e..9305f21 100644 (file)
@@ -5257,7 +5257,7 @@ You can import symbolic mode constants (C<S_IF*>) and functions
     $group_read    = ($mode & S_IRGRP) >> 3;
     $other_execute =  $mode & S_IXOTH;
 
-    printf "Permissions are %04o\n", S_ISMODE($mode), "\n";
+    printf "Permissions are %04o\n", S_IMODE($mode), "\n";
 
     $is_setuid     =  $mode & S_ISUID;
     $is_setgid     =  S_ISDIR($mode);
@@ -5285,7 +5285,7 @@ The commonly available S_IF* constants are
 
 and the S_IF* functions are
 
-    S_IFMODE($mode)    the part of $mode containing the permission bits
+    S_IMODE($mode)     the part of $mode containing the permission bits
                        and the setuid/setgid/sticky bits
 
     S_IFMT($mode)      the part of $mode containing the file type