lukem
b7fac28c5b
In sig_cleanup(), attempt to reset the signal handler to the default
...
and raise the appropriate signal, so the correct wait status is
returned to the parent.
2007-07-03 10:20:09 +00:00
christos
206f418235
PR/36275: john at iastate dot edu: tar -s modifies symlink targets
...
- This is explained in a comment in pat_rep.c inside mod_name(). I did not
want to change the default behavior, so I added another modifier "s" which
when set, the pattern will not modify the symlink destination.
- While here I fixed another bug that was introduced before by the fix in
PR/35257 where the renaming was happening twice since we called rep_name
twice.
- Finally if we are renaming hard of soft-link targets print the renames for
those too.
2007-05-04 21:19:36 +00:00
msaitoh
8ce1f4fff2
fix typos
2007-04-29 20:23:34 +00:00
christos
135e711f26
bump date.
2007-04-23 18:41:11 +00:00
christos
702d1ca548
PR/36194: Greg A. Woods: add a '-V' flag to pax for verbose summary without
...
listing (and other minor fixes)
2007-04-23 18:40:22 +00:00
rillig
bbe065310a
EROFS is not a critical error in a "mkdir -p".
2007-03-08 17:01:30 +00:00
cbiere
e977a74585
Fix for PR bin/35432:
...
* The flags "crtux" are mutually exclusive for tar.
* The flags "ipt" and "oA" are mutually exclusive for cpio.
2007-01-16 19:06:41 +00:00
bouyer
3697550e70
Don't depend on lubutil if we're building host tools. Fix tools build on
...
non-NetBSD hosts.
2006-12-16 12:59:16 +00:00
christos
d9cd708017
PR/35257: Andreas Gustafsson: tar(1) opens excluded files
...
Apply the file modification function in the input files so that we can
de-select matched patterns.
2006-12-14 23:18:11 +00:00
he
0a97c3f688
Complete the move of string_to_flags() and flags_to_string() from the
...
bin/ls sources to libutil:
o Bump libutil minor version number
o Fix uses to include <util.h> to pick up the function definitions
o Fix most uses of flags_to_string() to release the now-malloc()ed result
2006-12-14 20:09:35 +00:00
christos
3d98aa3f4b
fix spelling of accidentally; from Zapher
2006-11-24 19:37:02 +00:00
christos
573bd5e5dd
add missing inititializer
2006-10-16 00:11:22 +00:00
elad
ed23b39f46
PR/34265: dieter roelants: pax truncates archive when appending fails.
...
Patch applied, thanks!
2006-10-07 09:53:20 +00:00
christos
06cdcd1106
PR/34255: dieter roelants: Remove mention of -p f.
2006-08-22 17:42:19 +00:00
snj
a640fe8c43
It's "its."
2006-04-24 19:00:29 +00:00
christos
c5d25686e0
PR/22995: Sergey Svishchev: If we are cd'ing around and we have directories
...
with relative paths, convert the directories to absolute paths, so that
restoring timestamps does not fail.
2006-04-16 16:20:21 +00:00
christos
6236eeb27a
Don't free str; it is used in pat_add. Noted by: Kouichirou Hiratsuka
2006-04-14 16:57:01 +00:00
christos
a8846ec5ac
Coverity CID 2734, 2731: Use after free; resource leak
2006-03-19 19:06:39 +00:00
christos
ee17e957e3
Coverity CID 343: Rework code so that we don't write after the end of the
...
array. The end effect is the same though.
2006-03-18 05:43:47 +00:00
christos
2ed09657c9
Coverity CID 345: Add missing free's.
2006-03-18 05:40:28 +00:00
dsl
b419a25464
Ensure we exit with an error if we don't actually do anything.
...
There are a lot of tty_warn(0,...) and syswarn(0,...) which probably ought
to be tty_warn/syswarn(1,...) to force an error exit. However some are
used in interactive parts (eg opening a continuation archive) where there
is a separate retry loop.
So we just pass a failure code out to main() - how quaint!
This should now cause the NetBSD build to fail when gzip tries to write
to a non-existant directory.
(I suspect there are still many errors that don't get reported correctly.)
2006-02-11 11:04:57 +00:00
dsl
cdec4ac10c
Change all the 'return(x)' to 'return c'.
...
Makes some other searches I want to do a bit easier.
2006-02-11 10:43:17 +00:00
dsl
885e558785
Actually exit with error if we cannot open("."), make it more obvious that
...
we exit with error on signals.
2006-02-11 10:35:19 +00:00
christos
ef3fea8531
Solaris mkdir on an automounted component returns ENOSYS. Go figure.
...
Good choices whould have been EROFS, EEXIST, EACCES, EISDIR...
2006-01-31 19:25:20 +00:00
yamt
d2169f9f6e
obey umask as it used to be before the "mkstemp and then rename" change.
2006-01-04 22:02:11 +00:00
christos
d0d28f16f5
If we get EACCES from mkdir, try to stat() it, and if it is ok, we keep going.
...
Fixes problem with IRIX.
2005-12-06 19:11:15 +00:00
christos
c952ef6b81
PR/31923: Sergey Svishchev: pax-as-tar ignores -k, overwrites existing files
...
Fix from Onno van der Linden
2005-11-01 23:43:27 +00:00
dsl
469d38dbae
Don't leave arcn->org_name pointing to ftent->fts_path, if we being cpio
...
then ftent is freed just below. Take a copy of the name and point org_name
at the copy.
Should fix PR/30627 (the fix in the PR will break pax and tar!)
2005-09-24 17:05:21 +00:00
christos
88ee54d8c2
Check for another race reported by chuq.
2005-09-18 12:15:41 +00:00
christos
b39d90de0c
mkdir(2) can return EISDIR for /
2005-09-17 06:05:04 +00:00
christos
5b36787563
spelling fixes from Joerg Sonnenberger
2005-09-16 17:05:14 +00:00
christos
b60b306ef2
Another missing mkdir() race pointed out by chuq. Factor out the mkdir code.
2005-09-16 16:48:18 +00:00
christos
0743a9e845
use stat and not lstat to detect if we have a directory. refactor the mkpath()
...
code.
2005-09-13 20:09:55 +00:00
christos
929821126f
when creating directories, check if the failure occured because someone
...
else created the directory before we did to avoid races. From chuq.
2005-09-13 15:50:17 +00:00
wiz
49c862f011
Use better section header. Sort sections. From YOMURA Masanori in private mail.
2005-09-11 23:21:17 +00:00
wiz
553e3c8477
Use better section header. From YOMURA Masanori in private mail.
2005-09-11 23:13:03 +00:00
christos
d7df71ba0e
Don't compile in cpio usage, if we are SMALL.
2005-06-29 02:21:27 +00:00
christos
6310b59691
sprinkle a little const, and now everything compiles with WARNS=3
2005-06-26 19:10:48 +00:00
chs
7bbdd188e1
appease gcc -Wuninitialized on hp700.
2005-06-05 19:08:28 +00:00
lukem
aab85a0fd4
appease gcc -Wuninitialized
2005-06-01 15:25:51 +00:00
wiz
6599ec1bca
Bump date for -no-recursion.
2005-05-24 00:05:01 +00:00
christos
4e0ae89b44
Don't even declare fdochroot() if we are in tool mode.
2005-05-22 17:41:50 +00:00
christos
a1484a9949
be more lenient on the comparison to argv[0] to determine our personality.
2005-05-15 02:04:30 +00:00
christos
398a081644
Allow writing symlinks that point outside our tree, but not traversing
...
them to write other files.
2005-05-14 18:49:51 +00:00
christos
8dcba5679e
PR/30167: J.T. Conklin: NetBSD tar does not support GNU tar --no-recursion flag
2005-05-07 22:27:33 +00:00
jmc
6ae4f78197
Wrap call to fchroot in CONFIG tests so this doesn't blow up on cross-tools
2005-05-06 16:49:25 +00:00
christos
0a6f2d385f
PR/30132: Juan RP: tar --chroot refuses to extract files.
...
fchroot() changes the effective path, so we need to call updatepath().
2005-05-05 14:54:49 +00:00
christos
33cefcde7e
PR/29005: Jesse Off: nbpax requires sys/mtio.h which doesn't exist on Interix
...
I added an ifdef called HAVE_MTIO_H and fixed the code to use it. It is
always defined now, but you can change this for Interix.
2005-05-01 02:59:28 +00:00
christos
13d863367b
Pax longopts were not empty element terminated.
2005-04-24 03:39:26 +00:00
christos
14f615efd9
If we cannot resolve a path, that probably means that we have not created
...
directories for that path yet. So, do the check for each component recursively
and succeed if none of the components fall outside our current working
directory.
2005-04-24 03:36:54 +00:00