]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man7/path_resolution.7
ffix
[thirdparty/man-pages.git] / man7 / path_resolution.7
index 0d533ade6cc1cb8b3691d59052d7d8ebd88fd4cf..7037d2abfd2bccafe27107ea8c9066970103f9de 100644 (file)
@@ -61,13 +61,17 @@ in the current lookup directory.
 
 If the process does not have search permission on
 the current lookup directory,
-an EACCES error is returned ("Permission denied").
+an
+.B EACCES
+error is returned ("Permission denied").
 
 If the component is not found, an ENOENT error is returned
 ("No such file or directory").
 
 If the component is found, but is neither a directory nor a symbolic link,
-an ENOTDIR error is returned ("Not a directory").
+an
+.B ENOTDIR
+error is returned ("Not a directory").
 
 If the component is found and is a directory, we set the
 current lookup directory to that directory, and go to the
@@ -77,7 +81,9 @@ If the component is found and is a symbolic link (symlink), we first
 resolve this symbolic link (with the current lookup directory
 as starting lookup directory).
 Upon error, that error is returned.
-If the result is not a directory, an ENOTDIR error is returned.
+If the result is not a directory, an
+.B ENOTDIR
+error is returned.
 If the resolution of the symlink is successful and returns a directory,
 we set the current lookup directory to that directory, and go to
 the next component.