summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Decrease to WARNS=3.rodrigc2007-01-201-1/+1
|
* Clean up compilation warnings. Set WARNS=6 in Makefile.rodrigc2007-01-2010-89/+35
| | | | | PR: 71659 Submitted by: Dan Lukes <dan obluda cz>
* o Remove duplicate includes.maxim2007-01-203-3/+0
| | | | Obtained from: Slava Semushin via NetBSD
* Fix a typo in a comment, introduced in rev. 1.19.brueffer2007-01-161-1/+1
|
* o Remove duplicate #include <errno.h>.maxim2007-01-161-1/+0
| | | | Obtained from: NetBSD (submitted by Slava Semushin)
* Provide a more accurate description of the size of the ports collection.murray2007-01-161-1/+1
|
* Fix typos.joel2007-01-121-3/+3
|
* add man pagesam2007-01-122-1/+182
|
* fix typosam2007-01-121-1/+1
| | | | MFC after: 1 week
* MFp4: struct fsm_opt_hdr needs to be __packed as it is used as an array forticso2007-01-051-1/+1
| | | | | handling wire data This is required to get ppp working on arm.
* some whitespace cleanup (which I usually don't bother with)mjacob2007-01-041-57/+55
| | | | | | so I could note that the previous delta was: Reviewed by: Mohan
* Add a function that checks for duplicate requests (basedmjacob2007-01-041-2/+43
| | | | | | | | | on some fairly tight criteria) so we avoid having broken clients spam rpc.lockd to death. PR: 107530 Obtained from: Doug Rudoff MFC after: 1 week
* During an upgrade, if /boot/kernel.prev exists then the backup ofceri2007-01-011-0/+18
| | | | | | | | | | /boot/kernel can fail. Try to remove /boot/kernel.prev and cope the best we can if that fails. PR: bin/106376 Submitted by: Nobuyuki Koganemaru Approved by: ru MFC after: 2 weeks
* Clarify a comment.ceri2006-12-311-1/+1
|
* Fix typo.ceri2006-12-311-1/+1
|
* "block is set to UTC" -> "clock is set to UTC"cperciva2006-12-311-1/+1
| | | | Submitted by: csjp
* Re-connect snmp_bridge to the build. It survived a make universebz2006-12-291-0/+1
| | | | (apart from powerpc where the build broke earlier).
* bridge_snmp.hbz2006-12-293-75/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | * Change the API of bridge_get_basemac to take a maximum buffer length. bridge_if.c * Adopt to new API. * In bridge_attach_newif() remove an additional pointer to the buffer by shuffling the code a bit. Also makes the code more readable. bridge_sys.c * bridge_get_basemac(): - Adopt to the new API. - Change check for error code of getifaddrs(). - First check for sa_family != AF_LINK. - Copy sockaddr_dl * to get around alignment constraints on some platforms. - Use strcmp instead of strncmp so that "foo11" != "foo1". * other functions: - Allocate n times of the struct we need instead of arbitrary len, cast to the type we want it to be and pass around struct *s instead of char *s. This gets us around alignment restrictions on some platforms and in addition it is more clear what data is passed around. - Name variables for same types consistently. Reviewed by: syrinx
* Fix a group of typos:yar2006-12-291-1/+1
| | | | | | | | preceed -> precede, preceeded -> preceded, preceeding -> preceding. Submitted by: Andre Guibert de Bruet <andy@siliconlandmark.com>
* Fix markup and change some layout; no content changes.ru2006-12-271-9/+39
|
* Add a sentence to the DESCRIPTION noting that updates aren't availablecperciva2006-12-261-0/+15
| | | | | | | for -STABLE or -CURRENT. Inspired by submission from: Scott Robbins MFC after: 3 days
* Simplify and improve the markup.ru2006-12-251-16/+16
|
* Tweak some wording and markup.ru2006-12-221-12/+13
|
* Correct the description of minpoll and maxpoll.ceri2006-12-211-3/+3
| | | | | | | | | Note that while later versions of the ntpd documentation use the term "dual logarithm", the text added here is consistent with the remainder of the current document. PR: docs/106926 Submitted by: Jeremy Chadwick
* ia64 is nit-picking according to tinderbox so temporary disconnectbz2006-12-211-1/+0
| | | | the bridge module from the build until this is fixed.
* Connect the snmp_bridge(3) module to the build.syrinx2006-12-201-0/+1
| | | | Approved by: bz (mentor)
* Keep in sync with the if_bridge(4) module (rev. 1.20 if_bridgevar.h,syrinx2006-12-203-36/+36
| | | | | | | 1.12 bridgestp.h) and rename all PointToPoint related variables from P2P to PTP (s/P2P/PTP/g s/p2p/ptp/g). Approved by: bz (mentor)
* Remove an unused variable.syrinx2006-12-201-1/+0
| | | | Approved by: bz (mentor)
* Make grammar a bit more consistent in this document.yar2006-12-201-2/+2
|
* Allow for module-path being a semicolon-separated list of dirs.yar2006-12-202-43/+64
| | | | | | | | | | | This is consistent with kern.module_path sysctl and also compensates for the unconventional syntax of asf(8) where the last of multiple arguments is the output file, which prevents us from using the traditional Unix syntax "foo file ..." to specify multiple module dirs. Submitted by: emaste MFC after: 1 week
* - Add geography and spanish ports categorieserwin2006-12-191-1/+3
| | | | | | | | - Use "related to" instead of "relating to" consistently [1] Submitted by: Rostislav Krasny <rosti.bsd@gmail.com> [1] Reviewed by: simon MFC after: 3 days
* Don't exit from watchdogd on receiving a signal if we cannot stop the watchdog.n_hibma2006-12-151-11/+18
| | | | | That'll require -KILL. This avoids resetting your system on one of the watchdogs that you cannot disable.
* Do not add 'default:' cases inside a switch() on an enum like thesyrinx2006-12-156-417/+498
| | | | | | | | | | | | | | | | | SNMP option argument. That way the compiler will give a warning in case of a missing or an extra but unknown 'case:'. Do the same for SNMP LEAF objects to be prepared once gensnmptree will auto-generate enums for those too. Add an abort() after the switch() instead of the 'default:' to catch any errors. The nice side effect is that the compiler will correctly track supposed to be 'uninitialized' variables with that. When trying to set a value sanity check it before calling the OS dependent API of snmp_bridge to tell whether it is an attempt to set a bad value or a general error. Suggested by: harti (first part) Approved by: bz (mentor)
* Add msk(4) to the list of supported network interface.yongari2006-12-131-0/+1
|
* Fix a typo ceri found while reviewing and I forgot to commiterwin2006-12-111-1/+1
| | | | | | | | | | in the previous version. Submitted by: ceri, matteo Reviewed by: cperciva Also note that the last revision was: Reviewed by: ceri, simon
* Update the list of ports categories.erwin2006-12-111-24/+15
| | | | | | | | | This is an updated version of: PR: 85367 Submitted by: linimon Reviewed by: simon MFC after: 3 days
* Add a new turkish mirrorerwin2006-12-101-0/+4
| | | | | | Submitted by: Evren Yurtesen <yurtesen@ispro.net> Reviewed by: simon MFC after: 3 days
* Instead of explicitly initializing variables to avoid compiler warnings,syrinx2006-12-093-16/+42
| | | | | | | | | | | | | add a default case to handle the situation when the variables are not initialized. Furthermore, abort() if the snmp agent passes an invalid option to the bridge module. As the option (SET, GET, GETNEXT, COMMIT, ROLLBACK) is determined by the snmp agent based on the operation requested by user, this behaviour is unlikely to be abused as a source for a DoS, but if ever hit will likely reveal a problem in the snmp agent or bridge module. Approved by: bz (mentor)
* Add support for RSTP (RFC4318) to the SNMP bridge monitoring module.syrinx2006-12-0710-47/+1170
| | | | Approved by: bz (mentor)
* Flush my typo fix queue for this directory.ceri2006-12-054-4/+4
|
* Fix typos.ceri2006-12-052-3/+3
|
* Add ftp.il.freebsd.org to the IPv6 server section.erwin2006-12-021-0/+2
| | | | | | Submitted by: Rostislav Krasny <rosti.bsd@gmail.com> Reviewed by: simon (also previous commit) MFC: 3 days
* - Add israeli mirror [1]erwin2006-12-011-1/+6
| | | | | | | - Add an IPv6 main site now both ISC and TDC have IPv6 Submitted by: Rostislav Krasny <rosti.bsd@gmail.com> [1] MFC: 3 days
* Bump .Dd for revision 1.8.ceri2006-11-301-1/+1
|
* o Xr netconfig(5).maxim2006-11-291-0/+1
| | | | | | PR: docs/105720 Submitted by: koitsu MFC after: 1 week
* Increase USR_MIN_SIZE to 160 because it requires more disk space.nyan2006-11-281-1/+1
| | | | MFC after: 3 days
* Do not mark Bluetooth HID device as a "potential keyboard" if its descriptoremax2006-11-271-1/+1
| | | | | | | | | has items with CONSUMER page. For now only check for items with KEYBOARD page. This should prevent bthidd(8) from allocating vkbd(4) keyboard for Microsoft Bluetooth Explorer mouse. Reported by: Eric Anderson MFC after: 3 days
* Push the detection of threading libs support down to ngctl/Makefileru2006-11-272-6/+8
| | | | | | | as the latter can be built without threading (with the loss of line editing functionality). Pointed by: glebius
* Back out half of my previous change to support parallel makes.jb2006-11-271-0/+2
| | | | | The generated Makefile clashes with the src/bin/sh/Makefile, causing it to try to use a rule to build something it doesn't need to.
* add rate knob for net80211 rate control modulessam2006-11-261-0/+2
| | | | MFC after: 1 month
OpenPOWER on IntegriCloud