aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2014-11-12 22:32:40 +0100
committerMichael Kerrisk <mtk.manpages@gmail.com>2014-11-12 22:32:40 +0100
commite7e006f279620bbfcade6347ab4a81038eede861 (patch)
treede17ba619c637cd50920798921cff2def7a9aa67
parentac5ba355d52a5a29f2d26badc96e6da9e48c0097 (diff)
downloadman-pages-e7e006f279620bbfcade6347ab4a81038eede861.tar.gz
getdents.2, capabilities.7, symlink.7: tfix: Change 'i-node' to 'inode'
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man2/getdents.24
-rw-r--r--man7/capabilities.72
-rw-r--r--man7/symlink.76
3 files changed, 6 insertions, 6 deletions
diff --git a/man2/getdents.2 b/man2/getdents.2
index 50a54919f3..4a96ff3ab9 100644
--- a/man2/getdents.2
+++ b/man2/getdents.2
@@ -202,7 +202,7 @@ program on an ext2 directory:
.nf
.RB "$" " ./a.out /testfs/"
--------------- nread=120 ---------------
-i-node# file type d_reclen d_off d_name
+inode# file type d_reclen d_off d_name
2 directory 16 12 .
2 directory 16 24 ..
11 directory 24 44 lost+found
@@ -258,7 +258,7 @@ main(int argc, char *argv[])
break;
printf("\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- nread=%d \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\\n", nread);
- printf("i\-node# file type d_reclen d_off d_name\\n");
+ printf("inode# file type d_reclen d_off d_name\\n");
for (bpos = 0; bpos < nread;) {
d = (struct linux_dirent *) (buf + bpos);
printf("%8ld ", d\->d_ino);
diff --git a/man7/capabilities.7 b/man7/capabilities.7
index a1adcb578e..aba8ed87f1 100644
--- a/man7/capabilities.7
+++ b/man7/capabilities.7
@@ -182,7 +182,7 @@ Set the
and
.B FS_IMMUTABLE_FL
.\" These attributes are now available on ext2, ext3, Reiserfs, XFS, JFS
-i-node flags (see
+inode flags (see
.BR chattr (1)).
.TP
.BR CAP_MAC_ADMIN " (since Linux 2.6.25)"
diff --git a/man7/symlink.7 b/man7/symlink.7
index b0b22fd317..d9ef6d2be6 100644
--- a/man7/symlink.7
+++ b/man7/symlink.7
@@ -46,8 +46,8 @@ A hard link to a file is indistinguishable from the original file because
it is a reference to the object underlying the original filename.
(To be precise: each of the hard links to a file is a reference to
the same
-.IR "i-node number" ,
-where an i-node number is an index into the i-node table,
+.IR "inode number" ,
+where an inode number is an index into the inode table,
which contains metadata about all files on a filesystem.
See
.BR stat (2).)
@@ -56,7 +56,7 @@ Hard links may not refer to directories
(to prevent the possibility of loops within the filesystem tree,
which would confuse many programs)
and may not refer to files on different filesystems
-(because i-node numbers are not unique across filesystems).
+(because inode numbers are not unique across filesystems).
A symbolic link is a special type of file whose contents are a string
that is the pathname of another file, the file to which the link refers.