diff options
author | kris <kris@FreeBSD.org> | 2001-05-08 06:19:06 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-05-08 06:19:06 +0000 |
commit | 6f2ea93cf4d39dc17b5fff4bc84a55d6562c8cd4 (patch) | |
tree | 63ec355a438835dcc12c39eb54e9e286c4f71426 /bin/pax/cache.c | |
parent | 7ecc59e45de1a67ed22b32856a18f28bb30d36e6 (diff) | |
download | FreeBSD-src-6f2ea93cf4d39dc17b5fff4bc84a55d6562c8cd4.zip FreeBSD-src-6f2ea93cf4d39dc17b5fff4bc84a55d6562c8cd4.tar.gz |
Sync up with OpenBSD. Too many changes to note, but the major features
are:
* Implement cpio compatibility mode when pax is invoked as cpio
* Extend tar compatibility mode to cover many of the GNU tar single-letter
options (bzip2 mode, aka -y/-j is not present in OpenBSD). When
invoked as tar, pax is now full-featured enough for use by the ports
collection to extract distfiles and create packages.
* Many bug fixes to the operation of pax and the tar compatibility modes
* Code fixes for things like correct string buffer termination.
I tried to preserve existing FreeBSD fixes to this utility; please let me
know if I have inadvertently spammed something.
Diffstat (limited to 'bin/pax/cache.c')
-rw-r--r-- | bin/pax/cache.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/pax/cache.c b/bin/pax/cache.c index 040e18b..f593dce 100644 --- a/bin/pax/cache.c +++ b/bin/pax/cache.c @@ -388,7 +388,8 @@ uid_name(name, uid) } if (ptr == NULL) - ptr = (UIDC *)malloc(sizeof(UIDC)); + ptr = usrtb[st_hash(name, namelen, UNM_SZ)] = + (UIDC *)malloc(sizeof(UIDC)); /* * no match, look it up, if no match store it as an invalid entry, @@ -457,7 +458,8 @@ gid_name(name, gid) ++gropn; } if (ptr == NULL) - ptr = (GIDC *)malloc(sizeof(GIDC)); + ptr = grptb[st_hash(name, namelen, GID_SZ)] = + (GIDC *)malloc(sizeof(GIDC)); /* * no match, look it up, if no match store it as an invalid entry, |