itojun
b1ba1c6a53
$KAME$ cleanup. address PR 11616 (CMSG_SPACE should be CMSG_LEN).
...
couple of stability/protocol conformance fixes. sync with kame.
2000-12-04 07:05:47 +00:00
itojun
a2ca80c86b
$KAME$ cleanup. address PR 11616 (CMSG_SPACE should be CMSG_LEN).
...
sync with kame.
2000-12-04 07:04:37 +00:00
itojun
8b87a48e0e
$KAME$ cleanups. sync with kame
2000-12-04 07:03:17 +00:00
matt
a2877b394c
Don't emit MACHINE/MACHINE_ARCH. Instead emit a TARGET_MACHINE=machine
...
instead.
2000-12-03 07:06:15 +00:00
matt
5cde4cf735
If a port-specific Makefile.<port> doesn't exist, try a arch-specific
...
Makefile.<arch>.
Emit MACHINE=<port> and MACHINE_ARCH=<arch> to the emitted Makefile.
2000-12-02 23:01:54 +00:00
is
e077acfb61
Document that text (console) modes need a depth field of 4.
2000-12-02 21:58:10 +00:00
hubertf
1e2914d00b
Document that the path to the configuration file given on the command
...
line must be absolute, unless the -d option is given on the command line.
2000-12-02 02:15:34 +00:00
simonb
0833efd07d
Remove extern variables and functions now declared in dkstats.h.
2000-12-01 02:10:22 +00:00
simonb
80bd9216d2
ANSIfy.
2000-11-30 23:59:03 +00:00
hubertf
4b8a7a0e49
Fix pkg_info w/ URLs (*sigh*)
2000-11-30 10:09:15 +00:00
mrg
6ce96c999f
several clean ups:
...
- don't include eeprom support on sparc64.
- work out if we are eeprom or openprom from the results of open()
and/or ioctl(), rather than grovelling the kernel.
- move all eeprom specific code to eehandlers.c
- update manpage for sparc64 usage, remove delete -N switch
with these changes, eeprom(8) no longer needs to be setgid.
2000-11-28 22:31:37 +00:00
sommerfeld
057fcccd0c
Default crontab size limit is 256k, not 32k; correct documentation to
...
match code.
2000-11-28 14:06:13 +00:00
mycroft
9ff73e166a
Oops; the increment needs to be in check1pkg() for the case where the user
...
specifies a list.
2000-11-28 05:23:35 +00:00
mycroft
23451da968
pkgcnt was incremented twice during a `check'...
2000-11-28 05:21:57 +00:00
hubertf
fc8a285aa2
Fix timeout in expect():
...
The FTP coprocess formerly wrote the output of the "get | tar vxf -" pipe
to stderr, which resulted in no output to the feedback pipe (stdout), and
thus the timeout was not updated for any line printed by the "tar" process.
This was now changed to also feed back the chars to the expect() routine,
updating the timeout handler. The "also" part is implemented by passing
the output through "tee /dev/stderr".
At least NetBSD and Solaris have this, so no problem there.
Thanks to Frank van der Linden for helping me to debug this.
2000-11-28 01:16:01 +00:00
mycroft
04adf420b1
Don't terminate the loop after getting a short packet, either.
2000-11-27 17:36:19 +00:00
mycroft
a23cc61626
For BPF, we must loop on receive_packet(). BPF may return multiple packets at
...
once, and we obviously won't get a select() hit for each one in that case.
2000-11-27 17:33:02 +00:00
mycroft
33515cb532
Make sure to BPF_WORDALIGN() the buffer pointer for each packet, as BPF does in
...
the kernel. Otherwise the pointers get out of sync and dhcpd goes nuts.
2000-11-27 17:08:16 +00:00
hubertf
ec58d85250
Don't mkdir("/usr/tmp") in a desperate try to get some space.
...
If it's there, use it. If it's not there - bad luck.
Pointed out by Simon Burge <simonb@wasabisystems.com>.
2000-11-26 03:12:01 +00:00
jdolecek
c40ad1440d
cast isprint() parameter to (unsigned char) - it looses if the character has high
...
bit set when the architecture is using signed char by default
This fixes bin/11556 by Michael Eriksson.
2000-11-24 09:53:36 +00:00
itojun
50ac5d898b
move rcsid to the top
2000-11-24 07:42:07 +00:00
veego
048d058532
Fill in 26 defines for MNT2_NFS_OPT_ which the configure script didn't
...
find and were lost in the upgrade of am-utils.
2000-11-21 12:14:18 +00:00
enami
6bc7e18094
Don't try to deallocate an object pointed by NULL pointer. Instead,
...
deallocate the right one.
2000-11-21 03:47:41 +00:00
wiz
45b07c3e8f
Since amd compiles with WAUDIT=2, include it in Makefile.
2000-11-21 02:03:26 +00:00
is
b002f5435b
With RARP, MAC asks, and IP answers. Fixes PR 11330 by Thilo Manske, who
...
also provided the fix (modulo formatting).
2000-11-20 14:59:30 +00:00
tron
f8f9801395
Use empty string as default prefix so that e.g "/etc/spwd.db" is used
...
instead of "//etc/spwd.db".
2000-11-20 14:09:36 +00:00
wiz
20845d16f4
remove outdated comment
2000-11-20 01:58:43 +00:00
wiz
c9669422d2
Make config_local.h more cross-compile safe. Thanks simonb!
2000-11-20 01:56:13 +00:00
wiz
d53f0cf553
Fix thinko on my part (we do have setitimer).
2000-11-20 01:23:14 +00:00
wiz
0f1a444c28
restore ID tag (forgot removing $$)
2000-11-20 00:27:23 +00:00
wiz
e5d9f656ce
Replace old build structure with new reach-over one.
2000-11-20 00:24:41 +00:00
wiz
4f035159de
Import of amd reach-over Makefiles for using the sources in dist/am-utils.
2000-11-20 00:16:18 +00:00
bouyer
9c9d109bdd
Fix bin/11253: seg-fault in mopd
...
Once we found the correct slot, make sure dle points to it. dle was left
pointing out of the array by the for(;;) loop.
Fix from Ken Wellsch <kwellsch@tampabay.rr.com>
2000-11-19 16:40:16 +00:00
mrg
7996c8de3a
de-__P-ify.
2000-11-19 11:15:01 +00:00
cgd
a1a91fd28f
if there are no locators or parent, don't output those arrays. (Sometimes
...
you really want no devices whatsoever. In that case, you get unused
static var warnings from the compile.) Reviewed by sommerfeld.
2000-11-18 00:51:29 +00:00
msaitoh
c1fd8f00d4
Add forgottern addarg(&al, NULL, 0) before execve() to prevent coredump.
2000-11-16 08:33:33 +00:00
tv
a32617f770
This is now 8.2.2-P7, so update VER.
2000-11-13 22:45:05 +00:00
perseant
a3bb9e16b4
Report, and detect and correct inconsistencies in, the number of clean
...
segments. Patches from Jesse Off <joff@gci-net.com> (PR #11470 ).
2000-11-13 00:30:48 +00:00
martin
d045d83e39
Make ntp work on sparc64 (workaround for toolchain problems) by
...
adding -msoft-quad-float.
2000-11-12 19:48:55 +00:00
wiz
18c121ba47
ispell
2000-11-12 15:32:57 +00:00
itojun
980886f151
do not advertise dynamic/cloned routes
2000-11-10 18:15:57 +00:00
itojun
7da1bb7a9c
synchronize with BIND 8.2.2-P7.
...
- resolve conflicts (there are many conflicts with $NetBSD$ tags -
dunno why they happen).
- type pedant (couple of typecasts).
correct yacc-generated file handling. remove bin/named/ns_parser.h,
use the header yacc generates at compilation time.
2000-11-10 09:56:56 +00:00
wiz
efad173586
Add amd.conf.5 from dist/am-utils/scripts here, and install it.
...
Fixes PRs 5051, 7524, 8999, 10814.
XXX: Why are amd & friends not using reachover Makefiles, but a copy of
the source? This should be fixed...
2000-11-08 12:00:48 +00:00
itojun
bfef63a365
do not print "PIM" twice
2000-11-08 07:23:54 +00:00
tron
68fa36f81f
Avoid segmentation fault if "dns_zone_lookup()" is called with an empty
...
string as name. Problem noted by Simon Burge.
2000-11-07 13:21:36 +00:00
lukem
279552d3db
fix up various .Nm abuses:
...
- keep the case consistent between the actual name and what's referenced.
e.g, if it's `foo', don't use '.Nm Foo' at the start of a sentence.
- remove unnecessary `.Nm foo' after the first occurrence (except for
using `.Nm ""' if there's stuff following, or for the 2nd and so on
occurrences in a SYNOPSIS
- use Sx, Ic, Li, Em, Sq, and Xr as appropriate
2000-11-07 06:43:24 +00:00
lukem
ebcd47ebf3
use .Xr
2000-11-07 05:44:50 +00:00
lukem
6ccf8e332e
format the option descriptions in a more standard (and imho readable) style
2000-11-05 03:05:48 +00:00
simonb
3854f3f705
Fix behaviour of 'useradd -m': it is now a fatal error if the target home
...
directory already exists. Previously new skel files from /etc/skel were
copied and permissions/ownerships changed even if the directory already
existed.
2000-11-04 04:31:43 +00:00
tron
dd8effead0
Adapt to the new line discipline scheme.
2000-11-02 21:40:37 +00:00
wiz
341453a017
Remove duplicate entry for -d option, fixing misc/11414.
...
Sort options while I'm here.
2000-11-02 18:16:43 +00:00
taca
6a3b366a8c
Patch from the ISC DHCP CVS repository, fix dhclient problem,
...
"Re: dhclient still taking up 95% of CPU" in current-users:
: Fix for bug #416 : If a server hands dhclient an insanely large
: lease time, select() can get passed a too-large timeout, causing it
: to return EINVAL. This fix restricts the select() timeout to one day.
2000-11-02 03:14:21 +00:00
taca
e3e05b89d4
Patch from the ISC DHCP CVS repository:
...
: Tweak omapi_protocol_connect() so that authenticators are sent in the
: proper order.
2000-11-02 03:14:02 +00:00
simonb
a2358fe791
Remove some debugging cruft in the removal of user home directories
...
accidently left in from revision 1.25.
2000-11-01 22:35:30 +00:00
simonb
dc598d2a0c
Run a "chmod -R u+w <newhomedir>" after copying files from skeldir.
...
Noted by Hubert Feyrer in private mail.
2000-11-01 22:29:10 +00:00
simonb
2ad83f6dcf
Don't let usage messages wrap around on an 80 column terminal.
...
Problem noted by Hubert Feyrer in private mail.
2000-11-01 22:18:22 +00:00
itojun
cd0d2f37f0
backout previous, it was redundant
2000-11-01 06:19:35 +00:00
itojun
5e5edf3d3a
clean unnecessary yacc-generated source.
2000-11-01 06:17:36 +00:00
hubertf
efeb1d1e82
Don't swallow '%' in file/directory names.
...
Patch submitted in PR 11352 by Brook Milligan <brook@biology.nmsu.edu>
2000-10-31 23:47:05 +00:00
he
70a24dc7c0
Change from sprintf() to snprintf() where we may print externally
...
supplied data of unknown length.
Changes adapted from FreeBSD-SA-00:61.
2000-10-31 12:17:07 +00:00
tron
b56cc4466d
Patch from Takahiro Kambe to fix crashes if dynamic DNS updates
...
are used. This fixes PR bin/10665 by Mason Loring Bliss.
2000-10-29 22:55:57 +00:00
hubertf
4f394222d2
Pull in /etc/mk.conf unconditionally, not only on SunOS.
...
Discussed with Alistair Crooks.
2000-10-27 11:49:23 +00:00
wiz
3204ca286c
pcvt is dead.
...
XXX: better wording for lines 99-101?
2000-10-27 11:31:32 +00:00
garbled
9c6cafac02
Change direct calls to make to ${MAKE}
2000-10-26 06:00:48 +00:00
hubertf
931aadfd80
s/bsd/BSD/
2000-10-25 15:55:44 +00:00
jmc
a6e6938ba6
Needed bsd.own.mk before MKDOC gets defined. subdir picks it up too late
2000-10-23 06:45:18 +00:00
simonb
45ad1d18bb
Only descend into the doc directory if ${MKDOC} != no.
2000-10-22 17:17:08 +00:00
mycroft
f5abf3cd7a
Introduce some caching.
2000-10-21 00:55:23 +00:00
fvdl
b2475f7e19
Make showmount -e work on lp64be. From Matt Green. While at it, also
...
fix another occurence of passing &int to xdr_long.
2000-10-20 11:49:40 +00:00
assar
e89ad55da9
cast pw_change (a time_t) into long and printf it as %ld
2000-10-18 01:45:12 +00:00
taca
5dea32f506
Make it compile again.
2000-10-17 16:12:20 +00:00
taca
0cb6a7cf94
Merge 3.0b2pl9 with head.
2000-10-17 16:10:38 +00:00
taca
70a42dc992
DHCP 3.0 Beta 2 Patchlevel 9
2000-10-17 15:07:41 +00:00
kleink
eafe08d5e9
Don't make references to _10Mb/s_ Ethernet; from Christian Weisgerber in
...
PR bin/11239.
2000-10-17 12:23:03 +00:00
simonb
6dfb84a930
For userinfo - if a password change or expiry time_t is 0, print "NEVER"
...
instead of some date around Jan 1, 1970.
2000-10-17 05:43:10 +00:00
simonb
5114e81f10
Handle -G for the useradd case (usermod was already correct). Also
...
show warning if a non-existant group is specified.
Patch from PR bin/11123 by David Edmondson.
2000-10-17 05:31:50 +00:00
simonb
051741ede8
Document the skel-dir and shell default settings.
...
Clean up skeleton dir list.
Part of fix for PR bin/10985.
2000-10-17 04:54:43 +00:00
simonb
97c54a1bab
Use flags to set which parts of a passwd entry are to be changed.
...
Before removing the home directory of a user check that
+ the user does not have uid 0
+ the user is the owner of the directory.
and remove the files using the effective user-id of the user. Show
a warning if the directory is not removed.
Use asprintf and fgetln for some string work to remove arbitary string
length limitations.
Fixes for PRs bin/11100 and bin/11103.
2000-10-17 04:53:27 +00:00
simonb
20fa427df4
Remove unneeded skel files.
...
Part of fix for PR bin/10985.
2000-10-16 13:46:48 +00:00
bjh21
73cc97669f
Correct usage message: -p and -d can't usefully be used together.
2000-10-15 13:34:20 +00:00
bjh21
4be95e0e9d
Use .Ql where appropriate.
...
-p and -d are, for practical purposes, mutually exclusive.
2000-10-15 13:32:13 +00:00
bjh21
95066d7f25
Put usage message in KNF order.
2000-10-15 12:46:31 +00:00
bjh21
b0c5636424
Canonicalize SYNOPSIS.
...
Widen left column of option list.
Add FILES section, so the possible values of <dev> are clearer.
2000-10-15 12:44:11 +00:00
bjh21
2530603bd5
Grammatical and formatting cleanups.
2000-10-15 12:37:16 +00:00
is
0e32b4bfb3
LP64 format string cleanup. Problem reported by garbled.
2000-10-15 12:27:25 +00:00
bjh21
ee64a7181e
Minor grammatical touch-ups.
2000-10-15 12:25:17 +00:00
itojun
d8212a986b
sync with latest kame version
2000-10-15 11:45:16 +00:00
bjh21
4e3f859aad
Render what text there is into something closer to English.
...
Credit the WIDE project, since the licence requests that.
2000-10-14 21:10:38 +00:00
taca
5f70e573c1
- replace DBDIR, ETCDIR and RUNDIR with /var/db, /etc, /var/run.
...
Original dhcp package, those strings are replaced with real pathname
when creating catman files. Since we install man files, those strings
should be replaced with real pathname.
2000-10-14 05:14:01 +00:00
augustss
eba963ea82
Fix more format string fallout.
2000-10-12 06:33:23 +00:00
augustss
43851beb31
Make it compile again after format string changes.
2000-10-12 06:11:40 +00:00
augustss
8ca6dec6ba
Make it compile again after format string changes (this change was obviously
...
never tested).
2000-10-12 06:07:04 +00:00
augustss
9bd605c103
Make it compile after format string changes.
2000-10-12 06:03:32 +00:00
is
d8302e2d73
More format string cleanups by sommerfeld.
2000-10-11 20:23:46 +00:00
itojun
0eafc475c2
/etc/mail/aliases, not /etc/aliases. PR 10167.
2000-10-11 16:51:55 +00:00
hubertf
bf24eb4e3f
Check if $PKG_PATH is set AND contains something useful. Stops
...
pkg_info from spewing.
2000-10-11 11:09:20 +00:00
hubertf
5f69d95c26
Check right variable to see if it's a URL (pkg -> cp)
2000-10-11 11:08:04 +00:00
hubertf
b31af88872
fix indentation
2000-10-11 11:01:41 +00:00
ad
2f4f733952
rpcinfo is in section 8.
2000-10-10 14:34:13 +00:00
ad
8d6bd26624
Let `-' mean stdin.
2000-10-10 14:33:23 +00:00