summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: fix markup.ru2001-07-181-16/+20
|
* mdoc(7) police: don't use enclosure macros with plain text.ru2001-07-181-3/+6
|
* mdoc(7) police: widen width of the options list.ru2001-07-181-1/+1
|
* Keep track of all "struct snoop"'s so that snp_modevent can fail withdd2001-07-183-2/+19
| | | | EBUSY if there's a device still open.
* Use MD_NAME and MDCTL_NAME constants where appropriate.dd2001-07-182-3/+5
|
* Document the fact that syslogd(8) requires logs files to be createdmike2001-07-181-0/+6
| | | | | | | | before it will start logging to them. PR: 27088 Approved by: des MFC after: 10 days
* Remove an unused variable, and don't try to print a char[] using %d.dd2001-07-181-2/+2
| | | | Submitted by: Mark Peek <mark@whistle.com>
* free_entry(): Don't free e->envp if it's already NULL; likewise fordd2001-07-181-4/+4
| | | | | | | | | | | | | | | | e->cmd. free_entry() now does the right thing with partially-initialized structures. load_entry(): Don't call env_free() on e->envp throughout the routine before jumping to eof; the free_entry() call at that label will take care of it. The previous behavior resulted in e->envp being free'd twice (well, the second time would usually result in a crash, but that's besides the point); once in load_entry(), and once in free_entry() after the former called the latter. Also note that the check added to free_entry() (above) doesn't help, since e->envp wasn't reset to NULL after env_free(). Submitted by: Mark Peek <mark@whistle.com>
* Set wollman as the MAINTAINER and mention the vendor contact. Ideallydd2001-07-181-0/+4
| | | | | | | | this entire subtree would be in src/contrib, but if that isn't going to happen at least this has a chance of warning off unsuspecting committers. Approved by: wollman
* Back out WARNS cleanup: this is apparently vendor code, even thoughdd2001-07-185-14/+8
| | | | | | most of the files aren't on the vendor branch. Submitted by: wollman
* Removed the comment that required all FreeBSD manpagesru2001-07-183-45/+36
| | | | | | | | | | | | | to have the $FreeBSD$ keyword, as this is now enforced by the CVSROOT/commit_prep.pl script. Fold multi-word macro arguments into a single argument by putting the surrounding double quotes - this speeds up the -mdoc processing drastically (of course if used systematically). Use the new features of -mdoc: exact -width specifiers, .In macro as an ``.Fd #include'' replacement.
* Make sure that installing a module complains if the target modulesroam2001-07-181-1/+1
| | | | | | | | | | | | | | | directory does not exist, instead of creating/overwriting a file with the name of the (expected) directory. Yes, this deviates a bit from nearly all other install targets in the tree, but let's face it, removing a modules directory is not all that uncommon a mistake, and finding a file with the contents of the last module installed is a baaad surprise at boot time.. PR: 26317 Submitted by: "T. William Wells" <bill@twwells.com> (the PR) Gregory Bond <gnb@itga.com.au> (the actual patch) Reviewed by: silence on -arch and -audit for the last 10 days MFC after: 2 weeks
* Bring the PPPoE Ethernet interface up *BEFORE* we send the node abrian2001-07-181-10/+6
| | | | | | CONNECT message. MFC after: 1 week
* Remove an example of bad sentence breaking style.sheldonh2001-07-183-15/+12
|
* fdisk(8): document the default for -b, add xref to boot0cfg(8).ru2001-07-183-0/+13
| | | | | | boot0cfg(8): add FILES section. Reviewed by: rnordier
* This commit was generated by cvs2svn to compensate for changes in r79847,ru2001-07-182-53/+98
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * From ChangeLog:ru2001-07-182-53/+98
| | | | | | | | | | | | | | | | : 2001-07-18 Ruslan Ermilov <ru@FreeBSD.org> : : * tmac/groff_mdoc.man: Document new -width and -column syntax. : Some other minor fixes. : * tmac/an-old.tmac: Add `AT' and `UC' macros.
* | Install and provide MLINKS for:alfred2001-07-181-2/+15
| | | | | | | | | | | | | | pbuf.9 vm_page_alloc.9 vm_page_copy.9 vm_page_flag.9 vm_page_hold.9 vm_page_insert.9 vm_page_io.9 vm_page_lookup.9 vm_page_protect.9 vm_page_sleep_busy.9 vm_page_wakeup.9 vm_page_wire.9 vm_page_zero_fill.9 vm_set_page_size.9
* | Document some of the kernel vm_page API as well as the pbuf API.alfred2001-07-1814-0/+1016
| | | | | | | | Submitted by: Chad David <davidc@acns.ab.ca>
* | 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>
OpenPOWER on IntegriCloud