]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Correct spelling of getgrgid and getpwuid
authorTim Kientzle <kientzle@gmail.com>
Sat, 22 Oct 2011 17:49:46 +0000 (13:49 -0400)
committerTim Kientzle <kientzle@gmail.com>
Sat, 22 Oct 2011 17:49:46 +0000 (13:49 -0400)
SVN-Revision: 3739

libarchive/archive_read_disk.3

index b3a09b5283926f0ad46cc2a07cd50ba8699f70bb..98ec6482f3f0404d9e94b43e8ed2ced7234ceac6 100644 (file)
@@ -133,16 +133,16 @@ object is destroyed or when new lookup functions are registered.
 This convenience function installs a standard set of user
 and group name lookup functions.
 These functions use
-.Xr getpwid 3
+.Xr getpwuid 3
 and
-.Xr getgrid 3
+.Xr getgrgid 3
 to convert ids to names, defaulting to NULL if the names cannot
 be looked up.
 These functions also implement a simple memory cache to reduce
 the number of calls to
-.Xr getpwid 3
+.Xr getpwuid 3
 and
-.Xr getgrid 3 .
+.Xr getgrgid 3 .
 .It Fn archive_read_disk_entry_from_file
 Populates a
 .Tn struct archive_entry
@@ -281,9 +281,9 @@ library was written by
 The
 .Dq standard
 user name and group name lookup functions are not the defaults because
-.Xr getgrid 3
+.Xr getgrgid 3
 and
-.Xr getpwid 3
+.Xr getpwuid 3
 are sometimes too large for particular applications.
 The current design allows the application author to use a more
 compact implementation when appropriate.