dsl
60bb0d96f3
Fix treatment of ' inside a 'here document' with a quoted EOF marker.
...
Fixes a breakage from the previous version.
2004-06-27 10:27:57 +00:00
dsl
c6cbc16d26
Correctly apply IFS to unquoted text in ${x-text}.
...
Fixes PR/26058 and the 'for i in ${x-a b c}; do ...' and ${x-'a b' c}.
I can't find a PR for the latter problem.
Regression test goind in shortly.
2004-06-26 22:09:49 +00:00
dsl
97e8f81436
Remove a broken optimistion that crept in earlier today.
2004-06-26 20:48:44 +00:00
dsl
8e940884ca
Kill a diagnostic I accidentally left in.
2004-06-26 14:21:29 +00:00
dsl
e4a2a056d2
No functional changes (intended).
...
Rename some variables, add some comments, and restructure a little.
In preparation for fixing "set ${x-a b c}" and friends.
2004-06-26 14:09:58 +00:00
grant
b0cddc5f0d
break out of the loop and avoid the infinite loop if attempts to
...
create, unlink and create all fail.
2004-06-26 13:28:09 +00:00
grant
e069813aa1
don't attempt to remove the current directory.
2004-06-26 12:39:06 +00:00
wiz
f1891abd4d
Sync usage with man page. Closes PR 25861 by Kouichirou Hiratsuka.
2004-06-25 14:27:57 +00:00
wiz
b982defe98
Add -v to usage. Closes PR 25862 by Kouichirou Hiratsuka.
2004-06-25 14:25:33 +00:00
christos
6b1f699323
don't keep going if -C failed to chdir(); from OpenBSD
2004-06-21 13:38:51 +00:00
jmc
b2f782612f
Completely rework how tools/compat is done. Purge all uses/references to
...
_NETBSD_SOURCE as this makes cross building from older/newer versions of
NetBSD harder, not easier (and also makes the resulting tools 'different')
Wrap all required code with the inclusion of nbtool_config.h, attempt to
only use POSIX code in all places (or when reasonable test w. configure and
provide definitions: ala u_int, etc).
Reviewed by lukem. Tested on FreeBSD 4.9, Redhat Linux ES3, NetBSD 1.6.2 x86
NetBSD current (x86 and amd64) and Solaris 9.
Fixes PR's: PR#17762 PR#25944
2004-06-20 22:20:14 +00:00
christos
08df9f4cb1
add -0 argument to handle nul separated file lists.
2004-06-19 02:27:00 +00:00
christos
b5370dc2f5
A small standalone program to dump ustar headers, used for debugging.
2004-06-16 14:28:21 +00:00
christos
0deda9612a
PR/25934: Dieter Baron: hard links with long names still fail.
...
As mentioned in the previous commit, the switch statement in the longlink()
needed simplification and it was a bit incorrect. Only depend on the passed
type to determine what kind of gnu longlink to produce. Don't try to deduce
it from the archive file type.
2004-06-16 14:26:24 +00:00
dsl
39cf7788fc
Use shell variables to get '(' and '\' inside shell substitution patterns.
...
Solves problems with different shells having differntly buggy parsers
(and the standard probably allowing random behaviour).
Should fix bin/25938
2004-06-15 23:09:54 +00:00
dsl
c6e67e3bf2
Change '\0' to 0 so that the SVR4 'echo' doesn't convert it to a null byte.
...
Fixes bin/25938
2004-06-15 22:57:27 +00:00
christos
393b592b72
PR/25934: Dieter Baron: tar and hardlinks with long filenames don't work.
...
- always put the @LongLink tag on the name, not the long-link name.
- pass in what type of long name record we want to create; one for long-name
or long-link name.
XXX: We should get rid of the switch too.
2004-06-15 21:52:00 +00:00
christos
44eb0cca7b
Restructure the code to make it more readable. No functional changes.
2004-06-15 21:49:36 +00:00
christos
24aca7f677
do the special symlink treatment with all negative fd's.
2004-06-15 21:44:55 +00:00
jmmv
0576e4b0be
Drop extra space.
2004-06-15 14:08:33 +00:00
christos
cf19966782
Undo previous fix, breaks:
...
#!/bin/sh
echo ${1+"$@"}
./sh.new foo.sh a b c
a b c b c
I'll revisit this when I have some more time.
2004-06-09 12:17:36 +00:00
christos
fc5d411571
"for i in ${x-a b c}; do echo $i; done" should print "a\nb\nc\n" not "a b c\n"
...
like other shells do. mark the expansion for ifs splitting. XXX: linux has a
very complicated fix for this. I wonder why.
2004-06-08 03:29:51 +00:00
christos
95a737969b
don't include the printf builtin if we are SMALL; saves 10K.
2004-06-06 07:03:11 +00:00
cjep
0ce4d4d615
Mention -g in synopsis. PR#25800 from Kouichirou Hiratsuka.
2004-06-04 09:25:48 +00:00
hubertf
c784286d1a
Fix typo: and the -> and then
2004-06-03 19:54:37 +00:00
hannken
8c21bc6224
Add ffs internal snapshots. Written by Marshall Kirk McKusick for FreeBSD.
...
- Not enabled by default. Needs kernel option FFS_SNAPSHOT.
- Change parameters of ffs_blkfree.
- Let the copy-on-write functions return an error so spec_strategy
may fail if the copy-on-write fails.
- Change genfs_*lock*() to use vp->v_vnlock instead of &vp->v_lock.
- Add flag B_METAONLY to VOP_BALLOC to return indirect block buffer.
- Add a function ffs_checkfreefile needed for snapshot creation.
- Add special handling of snapshot files:
Snapshots may not be opened for writing and the attributes are read-only.
Use the mtime as the time this snapshot was taken.
Deny mtime updates for snapshot files.
- Add function transferlockers to transfer any waiting processes from
one lock to another.
- Add vfsop VFS_SNAPSHOT to take a snapshot and make it accessible through
a vnode.
- Add snapshot support to ls, fsck_ffs and dump.
Welcome to 2.0F.
Approved by: Jason R. Thorpe <thorpej@netbsd.org>
2004-05-25 14:54:55 +00:00
christos
626d1a4171
Keep track of the while level, when popping loops because of a breaksw.
...
This is nasty...
2004-05-13 15:25:58 +00:00
christos
5820cbfaf6
Welcome to WARNS=3
2004-05-11 17:12:26 +00:00
christos
d24b172c21
avoid overflow in strcpy.
2004-05-10 19:11:31 +00:00
grant
4fc8c484c7
- remove an extraneous word
...
- it's "backward compatibility" not "backwards compatibility"
2004-05-04 13:20:46 +00:00
grant
dced68e86f
--unlink is the default, the argument is ignored and only accepted for
...
compatibility with other tar(1) implementations.
2004-05-04 13:13:01 +00:00
christos
69c89ea8a0
Don't exit with 1 on broken archives that mark directories as files for
...
the benefit of pkgsrc. I would have prefered that people fixed their
archivers instead.
2004-05-03 02:22:54 +00:00
dsl
00a6315e86
Ensure that fd 0, 1 and 2 are not used for the local end of pipelines.
...
Fixes PR bin/25395
2004-04-30 06:27:59 +00:00
matt
5864f65684
Set the chflags *after* the rename, not before.
2004-04-30 05:14:23 +00:00
christos
78b5033e6d
PR/25350: Alan Barrett: Treat the sticky bit specially as non-superusers
...
cannot set it on non-directories (elvis-2.2_0 extraction failed)
2004-04-27 13:45:45 +00:00
christos
04d1f5de72
PR/25188: Thomas Klausner: pax-as-tar problem with trailing slashes
...
The problem is with the program that generates the tar file:
-rwxrwxrwx 1 root wheel 0 Feb 8 16:46 faad2/aacDECdrop/
It creates directory nodes without the 'd' bit set, so that pax thinks
they are files and does the temporary name and dance with them. Added
code to detect this condition, warn about it, and work around it.
2004-04-25 16:20:24 +00:00
christos
57c1f1cfd7
PR/25299: grant beattie: 1.5.3/i386 kernel set archives confuse -current pax
...
PR/25310: Juan RP: tar can't unpack MS-DOS gzip files correctly
2004-04-25 15:52:30 +00:00
wiz
6af689d38b
Grammar improvement by Patrick Welche.
2004-04-23 13:28:58 +00:00
wiz
d8dd84fc16
Fix typo noted by Patrick Welche.
2004-04-23 13:28:15 +00:00
simonb
9bc855a931
s/the the/the/ (only in sources that aren't regularly imported from
...
elsewhere).
2004-04-23 02:58:27 +00:00
wiz
55bf8ce8b5
Refer statvfs instead of removed statfs.
2004-04-21 12:22:27 +00:00
christos
6bd1d6d4db
Replace the statfs() family of system calls with statvfs().
...
Retain binary compatibility.
2004-04-21 01:05:31 +00:00
wiz
a423ef4af0
Add some articles; use No instead of Li in one place
...
(more correct, see e.g. PostScript output); bump date for previous.
2004-04-20 20:47:47 +00:00
christos
af4f4c568a
PR/25207: Hubert Feyrer: tar cores on certain archive contents
...
Don't forget to cleanup xtmp_name when we fail to create the temporary file.
2004-04-20 20:00:37 +00:00
christos
1f747cc909
PR/25207: Hubert Feyrer: tar cores on certain archive contents
...
- On ustar archives with a specified prefix directory, arcn->nlen was not
computed properly.
- While I am here cast some snprintf's() to void.
2004-04-20 19:59:54 +00:00
jdolecek
c92704dc53
add support for 'length' keyword, for compatibility with GNU expr
2004-04-20 19:44:51 +00:00
jschauma
9bb0acaf30
The correct syntax for csh's pushd with a numeric argument is
...
pushd +n
not
pushd n
2004-04-20 01:43:03 +00:00
kleink
f6f484b31d
Un-__P(), ANSIfy, use EXIT_{SUCCESS,FAILURE}, use [gs]etprocname().
...
From Stefan Krüger in PR bin/24878.
2004-04-19 08:24:56 +00:00
lukem
778dabc229
Correct the description of sbsize; it is parsed in bytes not kbytes.
2004-04-19 01:36:32 +00:00
wiz
ae25ed4085
Document rlimit sbsize; case consistency; bump date.
2004-04-17 15:45:08 +00:00
wiz
8e5ab2cd61
Bump date for previous.
2004-04-17 15:42:42 +00:00
christos
6acf809e53
understand rlimit sbsize
2004-04-17 15:40:12 +00:00
christos
7fb1726a27
remove misplaced semi-colons.
2004-04-16 22:46:28 +00:00
christos
25afd895c0
PR/25200: Alan Barrett: bug in pax append mode. This problem was introduced
...
while trying to fix the tar append mode. Restore the correct 2 null blocks
at the end of file, and disable the old bug compatible mode for gnutar.
2004-04-16 22:45:56 +00:00
mrg
fa97f05587
fix bugs in the previous. use snprintf(). fixes the problem reported
...
in PR#25131.
2004-04-12 14:41:09 +00:00
keihan
27b3f59c96
Revert last, revision 1.46.
2004-04-02 12:53:05 +00:00
keihan
6898598891
".../newdir" --> "../newdir"
2004-04-02 11:14:24 +00:00
martin
abe6f9dc47
Remove duplicate include, fixes PR bin/25018 from Jeff Ito.
2004-04-02 09:08:55 +00:00
tsarna
5f8a756d98
Fix longstanding gap in stty functionality: while many operations had
...
inverses, "sane" didn't. Now there is symmetry.
2004-04-01 16:10:03 +00:00
mrg
0ade019d3f
redo GNU tar --exclude emulation to actually work the same. unfortunately,
...
because alternation (|) isn't available in "pax -s" RE's, we have to pass
four (yes 4!) different patterns:
.*\/<pattern>$
.*\/<pattern>\/.*
^<pattern>$
^<pattern>\/.*
instead of the more elegant
(^|.*\/)<pattern>($|\/.*)
fixes a problem reported by simonb.
2004-04-01 14:54:39 +00:00
jdolecek
cf0f7c2614
IPv6 support, based on src/usr.bin/rsh/rsh.c rev. 1.13
...
fixes PR bin/24940 by Manuel Bouyer
2004-03-28 08:18:25 +00:00
simonb
d8f2ef9ae4
Gah, fix uninitialised variable with the "etime" change. _Never_ be
...
happy with something and then edit a single line before committing
without retesting...
2004-03-27 14:55:24 +00:00
simonb
891960dba2
Add support for the POSIX.2 "args" and "comm" keywords. "args" is just
...
an alias for "command", and "comm" shows just argv[0] and not the whole
argument list.
Fix for part of PR standards/11224.
2004-03-27 14:52:36 +00:00
simonb
63e11689ca
Add support for the POSIX.2 "etime" keyword - shows the elapsed time
...
since the process was started. Fix a couple of style nits as well.
Fix for part of PR standards/11224.
2004-03-27 14:49:13 +00:00
simonb
a6b219ed94
#define<TAB>
2004-03-27 14:09:10 +00:00
simonb
c2c9310515
Use some constants from <tzfile.h>.
2004-03-27 12:59:25 +00:00
simonb
abb3201747
Wrap some long lines.
...
Consisently use (void) in front of printf(...);
A few more white-space nits.
2004-03-27 12:44:08 +00:00
simonb
f43fbf8e69
Fix grammar in a comment.
2004-03-27 12:11:55 +00:00
simonb
53474900d5
KNF, ANSFify, de-__P, unC++ify, white space nits.
2004-03-27 12:09:28 +00:00
simonb
56be4f0202
Change the header for the "tty" keyword "TT" instead of "TTY".
...
Fixed POSIX.2 conformance problem mentioned in standards/11225 from
Ben Harris.
2004-03-27 11:48:31 +00:00
enami
489a45ccd1
Combine two printf()s back to one. There was a reason to split in my
...
old patch but no reason to do so in the final version.
2004-03-26 20:28:39 +00:00
enami
f31e685fc4
Prevent sign extension for positive value, and f_bavail if it is considered
...
as positive value.
2004-03-26 20:19:03 +00:00
enami
efbe8a95d8
Fix an output of df -h when the value is negative; we need to provide
...
space for minus sign.
2004-03-26 20:07:47 +00:00
enami
5824b24c95
No need to reference through a pointer; just refer the array of
...
character directly.
2004-03-26 20:00:32 +00:00
enami
2229c36a99
Don't put space before close paren.
2004-03-26 19:53:53 +00:00
wiz
8cb1352961
Sort sections, bump date for previous, and add a comma after e.g..
2004-03-24 11:37:07 +00:00
fair
e008163968
Add an EXAMPLES section to answer PR 22255
2004-03-24 06:55:58 +00:00
jdolecek
217903eeea
explicitly use REG_BASIC when calling regcomp(3), instead of 0
2004-03-20 08:45:05 +00:00
enami
bf27454854
Use signed 64bit integer type instead of unsigned long long
...
since f_bavail may be negative.
2004-03-07 01:12:08 +00:00
enami
90ded884a4
Backout recent undocumented change to keep an output same as before.
2004-03-02 23:13:07 +00:00
christos
a2989006c9
fix compilation on LP64 systems.
2004-03-02 15:04:55 +00:00
itojun
1e9b827214
cast to unsigned long long before computing to avoid overflow
2004-03-02 03:59:17 +00:00
itojun
96b84a38a0
use unsigned long long to print block count.
2004-03-02 03:50:45 +00:00
jdolecek
47b5291b9c
rename variable 'history' to 'histlist' to avoid clash with libedit
...
history() when this program is crunched into /rescue tools
fixes PR bin/24556 by Kouichirou Hiratsuka
2004-02-26 08:24:03 +00:00
jrf
7800470e15
donlist_sysctl() was overwriting maxslp with vm.uspace. Changed
...
it to use uspace. See PR bin/23713, approved by christos@netbsd.org .
Thanks to joff@stchome.com for the submission.
2004-02-25 19:56:28 +00:00
wiz
85746c6759
Spell interrupt with two rs. From Peter Postma.
2004-02-24 15:16:04 +00:00
uebayasi
d59e9104ff
Tar(1)'s -s option needs an argument. Correct option string (s -> s:).
...
Reported and tested by Tomoaki Imamura.
2004-02-20 05:16:54 +00:00
snj
4aff9cba1e
s/nonmathing/nonmatching/
2004-02-13 23:25:01 +00:00
matt
8fbcc555cf
When pax catches a signal and cleans up, make sure to remove any temporary
...
file that was being extracted to. This will prevent pax from leaving
droppings when you hit ^C.
2004-02-13 23:10:14 +00:00
wiz
e3fc4b66c3
Spell the plural of suffix "suffixes", not "suffices".
...
Inspired by PR 24400 by Todd Vierling.
2004-02-13 17:56:17 +00:00
wiz
d20841bb64
Uppercase CPU, plural is CPUs.
2004-02-13 11:36:08 +00:00
wiz
0568bf7421
Uppercase CPU.
2004-02-13 09:55:51 +00:00
wiz
5fe648aa7a
Uppercase CPU where appropriate.
2004-02-13 09:55:24 +00:00
matt
1106d0b028
Nuke extra mkstemp. Use name, not tmp_name with chk_path.
2004-02-13 08:27:12 +00:00
matt
b2e2f282bd
Back out last change. Since the name is the entire path, prefixing it
...
with a '.' will not have the desired effect.
2004-02-13 00:11:30 +00:00
matt
272d78cb06
When creating the temporary file, prefix the name with a '.'
2004-02-13 00:07:55 +00:00
matt
99b5d86a5f
When restoring files from an archive, initially restore to a temp-file and
...
once it has been instantiated correctly, rename it to desired name. This
prevents the problem of partially created files being accessed before they
are complete. If said file is a shared library, that can cause ramdon core
dumps.
2004-02-12 22:19:18 +00:00
christos
e7827bbe92
recognize -k [--keep-old-files] short option. From hubertf.
2004-02-06 18:59:14 +00:00
christos
92ffc695bf
While the comment is not correct anymore, this fixes the problem of tar -rf
...
where tar would skip backwards too much, corrupting the current tar archive
on append.
2004-01-30 20:46:12 +00:00
provos
3afd9aba5f
the special filename "" does not receive translation and is going to fail.
...
previously, systrace would normalize it to $CWD/.; found by Nikolay Sturm
from OpenBSD.
2004-01-24 03:44:46 +00:00