itojun
9593086444
use strlcpy
2002-11-16 04:34:13 +00:00
itojun
881cb512fa
strncpy -> strlcpy to ensure string termination
2002-11-16 04:29:01 +00:00
itojun
7bd25b06e9
die if out-of-range address is specified to -p
2002-11-16 04:20:42 +00:00
itojun
343d3d8f80
die if out-of-range uid/gid is specified.
2002-11-16 03:59:36 +00:00
itojun
240664d004
strto* audit.
2002-11-16 03:36:17 +00:00
agc
ab7e447f08
Bump version number after adding "alpha" and "beta" version modifier
...
recognition.
2002-11-14 11:57:15 +00:00
agc
03ce8889fa
In addition to the existing "rc" modifier for a package version, add
...
support for "alpha" and "beta" versions, which sort before "rc". Move
to table-based modifier recognition.
2002-11-14 09:40:23 +00:00
enami
69a28166e0
Fix .Nm usage.
2002-11-09 12:10:48 +00:00
agc
d6b0aed068
When deleting a user with preservation, use a password of
...
"*************" rather than a single asterisk - it's just as difficult
to hash to the longer password since the asterisk character itself is
not in its alphabet, and pwd_mkdb now thinks it's a valid DES password.
2002-11-08 11:53:20 +00:00
agc
7843f87c3d
Factor out some common code.
2002-11-08 11:44:37 +00:00
rafal
ecf0596577
Convert to use getifaddrs(3) to get interface names; this is mostly removal
...
of grotty code to unpack data structures returned by the SIOCGIFCONF ioctl.
2002-11-08 03:40:28 +00:00
fvdl
d4f83aa2bb
Use a non-blocking SVC for TCP connections.
2002-11-08 00:14:50 +00:00
jrf
2547287233
Corrected the comment and error message.
2002-11-07 21:06:04 +00:00
jrf
fb826ed9ad
Detect NULL characters in a config file and error out.
2002-11-07 20:07:07 +00:00
jdolecek
01188cb460
constify structs, print also pipes for -f
2002-11-06 09:32:26 +00:00
thorpej
54a7ee3470
Allow more than one interface to be specified on the command line.
2002-11-05 14:18:04 +00:00
grant
f437cb0639
s/anyways/anyway/
2002-11-05 07:34:31 +00:00
thorpej
314b43faa0
For ELF, set d->loadaddr to 0, as we do for a.out.
...
On both my 4000/60 and SIMH, a boot program NOT loaded at 0 consistently
is loaded +0x5200 too high in memory, which which causes a fatal trap back
into the console even before the self-relocating code can run. "wHATEver."
2002-11-05 06:08:29 +00:00
thorpej
1a49eb0ca9
Make sure to fill in the load address in the dest. MOP header.
2002-11-05 05:06:05 +00:00
thorpej
ac17ec7137
Show the load address in hex.
2002-11-05 04:54:26 +00:00
enami
0ad4042cc2
... and fix typos which makes wrong display.
2002-11-02 06:35:30 +00:00
enami
a65c9b21f2
Cosmetic changes.
2002-11-02 06:32:10 +00:00
wiz
fdc93ee90f
Add tag for yesterday's state.
2002-11-02 02:07:43 +00:00
simonb
c79652b287
Print a newline between lines in -x mode.
2002-11-01 14:02:21 +00:00
mrg
3cf4c73d05
iostat(8) and systat(8) support for separate read/write disk statistics.
...
"iostat -x" now shows these (ala linux/solaris), but this is only splitting
the read/write bytes/transactions, not adding any new metrics. "systat
iostat" now has two new commands to switch between combined/separate mode
for both it's numbers & bar modes.
2002-11-01 12:47:55 +00:00
petrov
664489a4cb
follow-up rpcgen changes.
2002-10-31 08:39:13 +00:00
wiz
e597be7d4e
Fix typo. Found by Adrian Mrva.
2002-10-29 16:18:06 +00:00
wiz
c1f53358ea
Fix typos. Found by Adrian Mrva.
2002-10-29 16:16:58 +00:00
wiz
a125d07668
Fix typos. Found by Adrian Mrva.
2002-10-29 16:12:25 +00:00
itojun
41b5d4f9af
use strtoul, not atoi.
...
don't print strerrno() if errno == 0 on fatal().
sync w/kame
2002-10-26 20:10:02 +00:00
hubertf
4d58bf2551
Properly re-implement hilighting of the dialogue with the ftp(1)
...
process.
Thanks again for the throughout notification I got before that
was removed! :(
2002-10-26 14:43:43 +00:00
hubertf
4d4c17a923
use size of the right buffer
2002-10-26 12:37:00 +00:00
thorpej
2b3b2f08d6
Rather than relying on pure luck to get the log file on STDERR_FILENO,
...
explictly dup2 the log file dscriptor to STDERR_FILENO and close the
original.
2002-10-26 01:47:52 +00:00
thorpej
d2ed7ebdd1
* Use STDOUT_FILENO instead of 1.
...
* Pass the file descriptor to request_init() (libwrap) so that
it can actually do something useful later in fromhost().
2002-10-26 01:46:31 +00:00
wiz
3ced2f4983
Mention moused(8). From Julio Merino in PR 18801.
2002-10-25 21:02:45 +00:00
wiz
433a9df61c
Mention wsmoused(8). From Julio Merino in PR 18801.
2002-10-25 21:02:25 +00:00
wiz
e4a36f578d
Whitespace nit. Use .Nm instead of crossreferencing ourselves.
2002-10-24 16:22:49 +00:00
jonb
996cd2788d
Add a better hint about proper kernel configs than just "See Also sysctl(8)"
2002-10-24 16:06:05 +00:00
itojun
22a4160612
be more picky about argument parsing (check ERANGE from strtoul). sync w/kame
2002-10-24 12:54:14 +00:00
itojun
f062d0205a
make args u_long not to lose accuracy due to conversion/overflow.
...
from mark@openbsd
2002-10-23 03:48:07 +00:00
itojun
1d2f66eb21
add DPADD
2002-10-23 01:11:09 +00:00
itojun
86c2fb8d52
style
2002-10-23 01:09:50 +00:00
itojun
0a52cefa4d
add DPADD
2002-10-23 01:09:37 +00:00
itojun
bfd7fc27b3
add DPADD
2002-10-23 01:08:01 +00:00
grant
70e6e04099
Fix date typo, Oct 27 -> 17.
...
While it would be nice to be able to add features ahead of time,
it is not possible yet :)
2002-10-21 13:55:11 +00:00
lukem
307f4019a4
tweak usage now that multiple interfaces are supported...
2002-10-21 01:33:02 +00:00
provos
32b88027c7
use readlink with bufsize - 1; approved thorpej.
2002-10-19 20:33:17 +00:00
itojun
c025861aba
correct LBL_ALIGN behavior, sync with tcpdump.org.
...
enable LBL_ALIGN codepath to use byte-by-byte fetch in extract.h.
should correct PR 18688/18398.
2002-10-18 23:13:57 +00:00
thorpej
2c07094b2a
Allow more than one interface to be specified on the command line.
2002-10-17 19:13:50 +00:00
soren
dc8c2ef8d0
Postfix does not support the 'send-mail' arg.
2002-10-17 16:47:47 +00:00