summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: simplify the fix in rev. 1.25.ru2001-07-042-4/+6
|
* mdoc(7) police: sort xrefs.ru2001-07-042-2/+2
|
* mdoc(7) police: fixed markup and some typos.ru2001-07-041-15/+15
|
* mdoc(7) police:ru2001-07-041-1/+1
| | | | Keep document title (.Dt) in CAPITALS, as required by the mdoc(7) manpage.
* mdoc(7) police: don't xref to itself.ru2001-07-041-3/+2
|
* mdoc(7) police: cosmetics.ru2001-07-042-2/+4
|
* mdoc(7) police: sort xrefs.ru2001-07-041-1/+1
|
* mdoc(7) police: removed hard sentence breaks.ru2001-07-041-10/+20
|
* Use the .Rv macro to describe the return value.yar2001-07-041-6/+1
| | | | | Suggested by: ru MFC after: 5 days
* - Don't overwrite inb, inw and outw.nyan2001-07-0412-225/+404
| | | | | | | | - Move the lance_probe function to if_lnc.c. - Support C-NET(98)S again. Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata) and nyan No response from: Paul Richards
* Show IPv6 denied packets.ume2001-07-041-0/+34
| | | | MFC after: 1 week
* mdoc(7) police: added missing newline after .Dv macro call,ru2001-07-041-8/+12
| | | | removed hard sentence breaks.
* mdoc(7) police: use .Rv -std.ru2001-07-041-7/+2
|
* mdoc(7) police: mark NULL with .Dv.ru2001-07-041-8/+24
|
* mdoc(7) police: fixed/simplified formatting.ru2001-07-041-130/+81
|
* adjust mbuf length right in route_output().ume2001-07-041-1/+7
| | | | | Obtained from: KAME MFC after: 1 week
* When the link-layer address of a router changes, select theume2001-07-041-0/+18
| | | | | | | | best router again. In particular, when the neighbor entry is newly created, it might affect the selection policy. Obtained from: KAME MFC after: 1 week
* mdoc(7) police: sort xrefs.ru2001-07-041-2/+2
|
* mdoc(7) police: print some example text with literal font.ru2001-07-041-1/+4
|
* mdoc(7) police: fixed bugs in rev. 1.19, split section headers names.ru2001-07-041-5/+5
|
* mdoc(7) police: compact VFCF_ list.ru2001-07-041-1/+2
|
* mdoc(7) police: removed extraneous .Pp call.ru2001-07-041-1/+0
|
* Make the last fix work properly on descriptors 1 and 2 (not just 0)brian2001-07-041-1/+1
|
* Make sure you don't have a file descriptor leak for the 'real'mjacob2001-07-041-1/+5
| | | | | | | | | | underlying CAM device. This needs to be checked not only in the open routine, but the device->fd has to be initialized as well. PR: 28688 Submitted (partially) by: T. William Wells <bill@twwells.com> MFC after: 2 weeks
* Install it with mode 550, and with default group ${BINGRP}.ru2001-07-041-3/+2
|
* - Document that this program is available to root only.ru2001-07-041-4/+16
| | | | | | | - Document alternate way to fetch multicast info. - Add RFC2080 reference. Obtained from: OpenBSD (with mods)
* Describe the condition when EACCES is returned more explicitly.dd2001-07-041-1/+3
| | | | Submitted by: bde
* MFCs noted: ALS4000 driver, ifconfig(8) support for IEEE 802.11bmah2001-07-042-6/+8
| | | | devices, traceroute(8) default TTL from sysctl MIB.
* Check the void * argument in the AC_FOUND_DEV case against NULL. Whethermjacob2001-07-047-1/+16
| | | | correctly or not, this sometimes is propagated up via XPT.
* Follow Bruce's suggestions. They're probably wrong, but better than before.mjacob2001-07-041-3/+10
|
* Add code, imperfect though it may be, for CAM_NEW_TRAN_CODE compilation.mjacob2001-07-041-11/+115
|
* Handle any of descriptors 0, 1 or 2 being closed when we'rebrian2001-07-041-1/+18
| | | | | | | | | | envoked -- don't use them (as return values from open()), then (say) close(STDIN_FILENO) when daemonising. This is done by grabbing 3 descriptors to /dev/null at startup and releasing them after we've daemonised. MFC after: 1 week
* Implement mwakeup, mwakeup_one, cv_signal_drop and cv_broadcast_drop.jake2001-07-044-6/+58
| | | | | | | | | These take an additional mutex argument, which is dropped before any processes are made runnable. This can avoid contention on the mutex if the processes would immediately acquire it, and is done in such a way that wakeups will not be lost. Reviewed by: jhb
* Reduce the interface MTU by 2 when MPPE has been successfully negotiated.brian2001-07-038-7/+67
| | | | | | This is necessary because MPPE will combine the protocol id with the payload received on the tun interface, encrypt it, then prepend its own protocol id, effectively increasing the payload by two bytes.
* Don't accept chap80lm by default - it doesn't work.brian2001-07-031-1/+1
| | | | MFC after: 1 week
* Silence some gcc warningsbrian2001-07-031-0/+4
|
* Constify the format string.des2001-07-032-2/+2
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Make fdformat WARN=2 ready.joerg2001-07-032-11/+9
|
* Use correct type of argument to fgetln.mjacob2001-07-031-1/+2
| | | | MFC after: 1 week
* mdoc(7) police: fix spacing and punctuation issues.dd2001-07-031-3/+2
|
* mdoc(7) police: fix spacing issues.dd2001-07-031-6/+5
|
* mdoc(7) police: fix spacing issuedd2001-07-031-4/+4
| | | | Submitted by: ru
* Account for the machdep.msgbuf -> kern.msgbuf renaming.tmm2001-07-031-1/+1
|
* Use the kern.msgbuf sysctl to get the message buffer on a runningtmm2001-07-032-32/+44
| | | | kernel, and remove setgid kmem, which is not needed any more.
* Make the code to read the kernel message buffer via sysctl machine-tmm2001-07-033-84/+45
| | | | | independent and rename the corresponding sysctls from machdep.msgbuf and machdep.msgbuf_clear (i386 only) to kern.msgbuf and kern.msgbuf_clear.
* drop setgid bit. ifmcstat(8) is not audited, and is needed only for root.ume2001-07-031-1/+1
| | | | | Obtained from: KAME MFC after: 1 week
* properly check DES weak key. KAME PR 363.ume2001-07-031-5/+2
| | | | | Obtained from: KAME MFC after: 1 week
* * simplifycg2001-07-032-823/+325
| | | | | | | | | | | | * add support for mic record channel * add support for setblocksize * make mpsafe * make getptr accurate * reduce buffer size from 64k to 16k for better synchronisation
* Don't give a bad example by starting a struct tag name with anjoerg2001-07-031-1/+1
| | | | underscore. Names starting with an underscore are reserved.
* Remove spl's in uio_yield() that are covered by the sched_lock.jhb2001-07-031-3/+0
|
OpenPOWER on IntegriCloud