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