summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Add a missing memcpy (*blush*!)brian2004-04-171-4/+8
| | | | | Suggested by: James P Scully <scully@CS.Arizona.EDU>, Perianayagam Somasundaram <somu@CS.Arizona.EDU> MFC after: 10 days
* o split a sentence to make it more understandablebrueffer2004-04-161-2/+8
| | | | | | | | | o mention that the acctfile has to exist for accton to work [1] o add reference to acct.5 PR: 65071 [1] (slightly modified) Submitted by: Marc Silver <marcs@draenor.org> X-MFC after: re approval
* Install the MIBs and the definition file to the new location underharti2004-04-151-2/+2
| | | | | | /usr/share/snmp. Noted by: bmah
* Use a MANFILTER to patch the man pages to point to the right path.harti2004-04-142-0/+8
| | | | Noted by: phk
* Put the name of the module first in the list of all .Nm calls withharti2004-04-141-0/+1
| | | | | argument. This makes the output of calling .Nm without an argument more senseful later on.
* Compare with 0 if comparing an integer, not with NULL.harti2004-04-141-1/+1
|
* Move the SNMP MIBs and tree definitions from /usr/share/bsnmp toharti2004-04-141-2/+2
| | | | | /usr/share/snmp. This mirrors the use of /usr/local/share/snmp and makes also more sense when non-bsnmp-specific MIBs go in.
* Fix examples.fjoe2004-04-132-4/+4
|
* Use ifconfig(8) for setting common 802.11 parameters.fjoe2004-04-134-386/+16
| | | | Submitted by: Stanislav A. Svirid <count@riss-telecom.ru>
* Massive cleanup of the code removing global variables toluigi2004-04-131-206/+199
| | | | | | | | pass function arguments and results. Hopefully no functional changes except fixing a couple of bugs which could cause endless loops if an ioctl() on an interface would fail.
* Back out previous commit, it was unintentional.luigi2004-04-131-1/+1
| | | | | | Keep WARNS at 3 though the code does compile with WARNS=5 at least on i386 Noticed by: ru
* Replace ROUNDUP/ADVANCE with SA_SIZEluigi2004-04-134-19/+9
|
* Make functions and variables static.luigi2004-04-131-88/+96
| | | | | | | | Remove global variables in favour of local ones. Fix indentation of a couple of switch statements. Overall, this program badly need cleaning up, as it relies on information passed around through global variables.
* Sync list of FTP sites with current reality.kensmith2004-04-122-24/+20
| | | | | MFC after: 1 day Approved by: rwatson (mentor)
* Start committing Bluetooth HID (Human Interface Device) support.emax2004-04-1017-0/+3015
| | | | | | Note: bthidd(8) is still not complete. Need to commit kernel support (a-la Linux /dev/input) to feed HID events into kernel. Also need to write bthidd(8) and bthidd.conf(5) man pages.
* Use uint instead of u_intemax2004-04-0910-64/+64
|
* Make sure Bluetooth stuff can be compiled on amd64emax2004-04-092-5/+5
| | | | Submitted by: ps
* o SIOCGIFCONF->getifaddrs(2) conversion.maxim2004-04-091-76/+51
| | | | | PR: bin/9379 Obtained from: NetBSD
* - Change several errx() calls that should have been err() calls.mux2004-04-092-13/+15
| | | | | | - Handle empty ARP tables properly. - Remove register keyword. - arp(8) is WARNS?=4 clean, so mark it as such to avoid regressions.
* When invoking tar, make sure the mode option (-x) is first.kientzle2004-04-081-7/+6
|
* This manual page will not first appear in 4.10 as RELENG_4 has a differenttrhodes2004-04-071-1/+1
| | | | | | version of the adduser utility. Noticed by: simon
* Make WARNS=5 clean.phk2004-04-052-6/+9
| | | | Prodded by: Stefan Farfeleder <stefan@fafoe.narf.at>
* The list of (key,value) pairs to request_init is terminated by a 0 key,dwmalone2004-04-041-1/+1
| | | | | | | not NULL. Submitted by: Stefan Farfeleder <stefan@fafoe.narf.at> MFC after: 3 days
* Add FBSDID. Use getopt(3).charnier2004-04-041-11/+15
|
* Add FBSDID. err(3) changed to errx(3) because there is no errno messagecharnier2004-04-041-4/+4
| | | | to print in this context.
* 2 small typos.charnier2004-04-041-2/+2
|
* Do not :-terminate err(3) string, one will be added anyway.charnier2004-04-041-1/+1
|
* If the user doesn't specify a device and we can't open any of the defaults,dwmalone2004-04-011-6/+7
| | | | don't print an error using a uninitialised devbuf.
* Unbreak the build by dealing with an unexpected dependency on tcpdump sourcebms2004-03-311-0/+1
| | | | | | | present in ndp(8). The vendor branch import uses a _U_ macro to apply the GCC 'unused' attribute to the rcs ids embedded in each source file. Teach ndp about this.
* Fix regression in setkey whereby parser would fail to recognise tcp asbms2004-03-311-0/+1
| | | | | | | both a security protocol and an upper level protocol for encapsulation. PR: bin/63616 Submitted by: ume@
* Merge of tcpdump 3.8.3 from tcpdump.org.bms2004-03-312-87/+183
|
* Fix today's faux pas by:trhodes2004-03-301-16/+5
| | | | | | | | Removing the -compact option passed to .Bl macro to avoid useless .Pp macros; Adding a missing period; Using .Xr with .Nd since makewhatis(1) has no support for cases where the Xref is absent. Informed by: ru
* Add an adduser.conf manual page.trhodes2004-03-303-3/+211
| | | | | | | Hook it to the build in Makefile. Xref from adduser.8. Update adduser.8's BUGS section. Bump the date on adduser.8.
* Synopsis fixes:cperciva2004-03-302-12/+8
| | | | | | | | | | * `pkg_info -flags' needs either `-a' or a package name. [1] * Add -Q option to manual page. * Update `usage:' to match the manual page. PR: misc/64786 [1] Reviewed by: ru MFC after: 3 days
* Add a cross reference to exports(5). While exports is not directlysimon2004-03-301-0/+1
| | | | | | | | | tied to nfsd(8), exports is the configuration file users will most likely need to configure when dealing with a NFS server. Submitted by: Florian Hars <hars@bik-gmbh.de> PR: docs/64714 MFC after: 3 days
* Sychronize with reality: nologin(8) is now in /usr/sbincperciva2004-03-301-3/+3
| | | | Reminded by: trhodes
* Sync manpage's synopsis with usage().ru2004-03-302-3/+5
|
* Add PC98 supports.nyan2004-03-284-5/+77
| | | | Submitted by: Watanabe Kazuhiro <CQG00620@nifty.ne.jp> (mostly)
* Correct typo in the last revision.ceri2004-03-271-1/+1
|
* -N without -M is pointless.ru2004-03-262-12/+10
|
* Update information of how pstat(8) accesses the running system.ru2004-03-261-12/+15
|
* Note that only one webnfs share is allowed per NFS server.ceri2004-03-221-0/+3
| | | | | | | PR: docs/45371 Submitted by: Mattias Pantzare <pantzer@ludd.luth.se>, Matthew D. Fuller <fullermd@over-yonder.net> MFC after: 2 days
* On startup, warn if inetd's config file doesn't exist. This isn'tdwmalone2004-03-221-0/+2
| | | | | | | | | | | exactly the same as patch from the PR, which also exited if the config file was missing. I didn't use Jeff's patch because I was worried that some people might start inetd, create the config file and then HUP inetd. PR: 60806 Submitted by: Jeff Ito <jeffi@rcn.com> MFC after: 2 weeks
* Fixed a warning.ru2004-03-171-1/+1
|
* Fix typobrueffer2004-03-172-2/+2
|
* o Start sentences on new linesbrueffer2004-03-172-16/+34
| | | | o misc format fixes
* Language cleanupbrueffer2004-03-172-18/+18
|
* Move the _arlconfig define in the existing i386 section.nyan2004-03-171-3/+1
| | | | Suggested by: ru
* Implement "arlconfig arlX quality".fjoe2004-03-165-287/+123
| | | | | | Man pages fixes. Submitted by: Stanislav A. Svirid <count@riss-telecom.ru>
* Fix copyrights and mandoc markup.fjoe2004-03-162-16/+16
| | | | Pointed out by: ru
OpenPOWER on IntegriCloud