summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use quotes around ${RELEASETAG} to allow values likephk2001-07-181-2/+2
| | | | -r RELENG_4 -D "2001-07-17 12:00"
* Improve the interface provided by libdialog. Move a cursor around overeric2001-07-186-105/+280
| | | | | | | the components and trigger actions based on its position. This reduces the need to remember the functions of various keys, and makes the interface more consistant across library. ~
* New release notes: TCP default sendspace/recvspace increases,bmah2001-07-182-0/+22
| | | | mail(1) -E, SA-01:48.
* sysctl(8) doesn't need '-w' to write to sysctl variables anymore.jhb2001-07-173-3/+3
|
* If we're writing to stdout, we don't care about the size.des2001-07-171-1/+1
| | | | Submitted by: wollman
* WARNS cleanup + remove an unused macro and an unused function argument.des2001-07-172-650/+654
|
* (forced commit for more info on the previous change)dcs2001-07-170-0/+0
| | | | | | | | | | | | | | | | | | | | | | According to RFC 1112, which deals with multicasting, an application must specify the interface on which it wished to send a multicast packet. In the absence of such an interface, a default is selected. Previous behavior in ip_output.c erroneously checked for a route to the destination multicast address, rejecting the packet if none existed. Applications got around this with a FAQ recommending a 224.0.0.0/29 route to loopback. This worked because the multicast code in ip_output.c discards route information if an interface was selected. The previous commit skips the route check in the case where a multicast packet is being send to an application-defined interface. The only change in behavior, if no bugs were introduced, is the lack of rejection of a multicast packet for which no route exists sent to an application-defined interface. MFC after: 2 weeks
* Re-write the logic that finds the whois server to query.mike2001-07-171-16/+30
| | | | | | | | [This fixes a bug where one would type 'whois foo.bar.' and get an error because of the trailing period.] PR: 28880 Approved by: des
* Unbreak parsing URLs that have a host part but no document part.des2001-07-171-2/+3
| | | | While we're here, fix a snprintf() usage warning.
* MFCs noted: growfs(8) + ffsinfo(8), inetd(8) ident support cleanup,bmah2001-07-172-6/+6
| | | | inetd(8) AF_UNIX support.
* Turn off WARNS stuff. When combined with -nostdinc and system headerdwmalone2001-07-171-1/+1
| | | | files that aren't WARNS clean it causes trouble.
* Skip the route checking in the case of multicast packets with knowndcs2001-07-171-9/+22
| | | | | | | interfaces. Reviewed by: people at that channel Approved by: silence on -net
* Expand the "KAME import" release note item into two sections with morebmah2001-07-172-16/+144
| | | | | | details. Also move an existing item. Details provided by: ume
* Increase NMBCLUSTERS by 4x.obrien2001-07-171-1/+1
| | | | This takes a GENERIC kernel (MAXUSERS=32) from 1536 to 3072.
* Add a script_name_sep rc.conf knob to specify the IFS characterroam2001-07-174-10/+32
| | | | | | | | | | for separating the startup scripts' list into individual filenames. Run the shutdown scripts in reverse alphabetical order, so dependent services are stopped before the services they depend upon. Reviewed by: -arch, -audit MFC after: 3 weeks
* The per-cpu temporary buffers are not needed since the pcb_save areas havetegge2001-07-173-42/+15
| | | | | | | the proper alignment. Change dummy variable in npxinit from stack to bss to ensure proper alignment. Reviewed by: bde
* Backout damage to the INADDR_TO_IFP() macro in revision 1.7.ru2001-07-171-12/+5
| | | | | | | | | | | | | This macro was supposed to only match local IP addresses of interfaces, and all consumers of this macro assume this as well. (See IP_MULTICAST_IF and IP_ADD_MEMBERSHIP socket options in the ip(4) manpage.) This fixes a major security breach in IPFW-based firewalls where the `me' keyword would match the other end of a P2P link. PR: kern/28567
* Fix disclaimer clauseache2001-07-171-1/+1
| | | | Submitted by: jkh
* Add missing () around macro argument in cv_waitq_empty()phk2001-07-171-1/+1
| | | | Submitted by: Harti Brandt <brandt@fokus.gmd.de>
* Mention problems with PAM upgrade and ports.markm2001-07-171-0/+6
| | | | OK'ed by: imp
* Update to the same level of debug-logging as the rest of themarkm2001-07-171-6/+26
| | | | FreeBSD/PAM modules.
* Update to the same code as in the pam_krb5.so port.markm2001-07-174-64/+24
| | | | According to Peter, the port works - this needs more testing.
* o Remove old setproctitle.dwmalone2001-07-173-50/+9
| | | | | | | | o Mark unused variables. o Set WARNS?=2 o Results in no code changes. Submitted by: Mike Barcroft <mike@q9media.com>
* Set the NOADDITIONAL flag for bind. This removes the 5% ttl reductiondillon2001-07-171-1/+2
| | | | | | | | | | | | | | | | | | | for glue records and forces the glue record to be reloaded from the real NS. The 5% ttl reduction can cause the glue IN A to timeout before the NS record in certain situations, such as when the domain owner does not match up NS records with the NIC. This behavior by domain owners is becoming more common as primary zone serving iterates through another glue level (i.e. exodus hosts the master NS's but the customer then redirects the NS's to the real DNS servers). The result is that named would appear to work properly for about 40 minutes, and then unexpectedly fail for that zone. This causes named to behave very inconsistently and a google search shows that it has obviously frustrated many, many people. So until the bind guys make named behave consistently (either fail instantly or accomodate the case), we need to set this option to accomodate the case. The result will be much more consistent behavior and fewer head-scratching failures. MFC after: 3 days
* Add ability to configure console terminal type in /etc/ttysache2001-07-1711-4/+217
| | | | Reviewed by: audit, jkh's silence
* Ignore (with a warning message) mtu/mru configurations that are greaterbrian2001-07-171-21/+37
| | | | | | than the maximum physical values. MFC after: 1 week
* Language-dependent catalogs for RELNOTESng should overridebmah2001-07-171-1/+1
| | | | | | the language-independent catalog. Tested by: Alex Kapranoff <kapr@acm.org>
* Minor tweaks, mostly for style.bmah2001-07-161-20/+26
|
* Free things in the right orderbrian2001-07-161-1/+1
|
* MFS: Minor style tweaks and markup fixes.bmah2001-07-161-10/+15
| | | | obtaining.sgml: 1.1.2.1->1.1.2.2
* ftpmail.vix.com doesn't exist anymore; don't mention this as a viablebmah2001-07-161-14/+0
| | | | | | method for obtaining FreeBSD. Discussed with: Paul A Vixie <vixie@vix.com>
* TCPMSS adjusts all TCP SYN packets, not just outgoing ones.brian2001-07-162-2/+2
| | | | Pointed out by: ru
* Change the interrupt handler a bit so that we call the nge_rxeof() handlerwpaul2001-07-161-3/+2
| | | | | | when we get an RX_ERR interrupt rather than the nge_rxeoc() handler. The rxeoc (end of channel) handler attempts to reinitialize the whole NIC, which we don't want to do if we only received a bad packet.
* Note which entries are created by sysinstall(8).nik2001-07-161-1/+4
| | | | Requested by: ru
* MFS: Minor style and markup tweaks.bmah2001-07-161-9/+10
|
* Add an abstract for the README.bmah2001-07-164-0/+17
|
* Fix style bugs introduced by rev 1.28. No functional changes.wollman2001-07-161-11/+12
|
* Clarify that MAKEOBJDIR and MAKEOBJDIRPREFIX are environment variables.ru2001-07-161-1/+1
| | | | Submitted by: bde
* mdoc(7) police: Add strncpy() to the NAME section.ru2001-07-161-1/+1
|
* Grammar: 'effect' is a noun and 'affect' is a verb.sheldonh2001-07-165-6/+7
|
* Spelling: aquire -> acquire.ru2001-07-163-4/+4
|
* Manpage for pfind() and zpfind().ru2001-07-162-1/+87
| | | | Submitted by: Evan Sarmiento <kaworu@sektor7.ath.cx>
* Use PCPU_GET(cpuid) instead of curproc->p_oncpu.tegge2001-07-163-27/+27
| | | | Reviewed by: peter
* Remove unnecessary #include <stdlib.h>kris2001-07-161-1/+0
| | | | | Obtained from: NetBSD MFC After: 1 week
* Oops, commit the version which actually workskris2001-07-161-6/+12
| | | | | Obtained from: NetBSD MFC After: 1 week
* Avoid a compile-time format string warningkris2001-07-161-10/+13
| | | | | Obtained from: NetBSD MFC After: 1 week
* Connect std{in,out,err} to *something* so that "hooks" scripts that writeobrien2001-07-161-0/+7
| | | | | | | | | | to std{err,out} will not spam /etc/resolv.conf. Ted Lemon fixed the problem in version 3 of the client, but only for the pre-daemonized case. Thanks to Brian for pointing that out and helping to make our future dhclient (v3) better. Submitted by: brian
* Use a fixed type for times in on-disk structures for ufs rather thanpeter2001-07-163-5/+6
| | | | something that could potentially change like time_t.
* Add myselfkris2001-07-161-0/+1
|
* Now that config(8) has stopped breaking POLA (mkmakefile.c rev 1.69) byobrien2001-07-151-25/+25
| | | | | always including <KERNEL>.hints if its exist reguardless of the lack of a "hints" directive in the <KERNEL> file; we can have a real hints file again.
OpenPOWER on IntegriCloud