summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Remove useless mode argument to open().ssouhlal2005-01-251-1/+1
| | | | | Reported by: Liam J. Foy <liamfoy@gmail.com> Approved by: grehan (mentor)
* Add "NTP pool servers" to the list, including Worldwide, Asia, Europe,matusita2005-01-252-0/+30
| | | | | | | Oceania, and North America. Obtained from: http://ntp.isc.org/bin/view/Servers/NTPPoolServers MFC after: 1 week
* ntp.cyber-fleet.net is not in DNS database, remove it.matusita2005-01-252-6/+0
| | | | Reported by: sarumaru at ReichaNet IRC, users-jp@jp.FreeBSD.org, etc.
* o Reorganize the previous delta to make it more style(9) compliant.maxim2005-01-241-3/+5
| | | | | | Submitted by: ru o Reduce an amount of memory we ask in advance.
* o Try hard to guess a buffer size for a fast growing routing table.maxim2005-01-241-5/+15
| | | | | | | | An approach taken from killall/killall.c. PR: bin/76075 Submitted by: Dmitrij Tejblum MFC after: 3 weeks
* Bump the default maximum on nfsd processes from 20 to 256. Real-worldrwatson2005-01-231-1/+1
| | | | | | | measurements suggest that higher degrees of parallelism for large numbers of clients help performance substantially. Submitted by: Eric Anderson <anderson at centtech dot com>
* Fixed punctuation in xrefs.ru2005-01-212-3/+3
|
* Fixed xref.ru2005-01-212-2/+2
|
* Fixed xrefs.ru2005-01-215-7/+7
|
* Fixed .Xr call.ru2005-01-211-1/+2
|
* In crunchgen(1), when calling make(1), don't redirect stderr to stdout,ru2005-01-201-1/+1
| | | | | | | just rely on the exit status to detect an error. This makes crunchgen(1) safe to use with certain make(1) debugging flags. MFC after: 1 week
* Fixed formatting in the AUTHORS section.ru2005-01-181-0/+1
|
* Sort sections.ru2005-01-18119-794/+793
|
* Remove redundant parameter inherited from ipacctctl.glebius2005-01-181-8/+7
|
* One of the DIAGNOSTICS sections should be EXIT STATUS.ru2005-01-181-6/+6
|
* Added the EXIT STATUS section where appropriate.ru2005-01-1739-42/+46
|
* Add prototypes and remove unused variables for WARNS=6 compliance. Addcharnier2005-01-161-25/+28
| | | | | 'usage: ' in front of usage string. Use warnx(3) instead of fprintf in error messages to get progname prepended.
* Eliminate macro calls inside literal displays.ru2005-01-153-36/+16
|
* Fixed display type.ru2005-01-151-1/+1
|
* Removed bitrot.ru2005-01-132-10/+4
|
* WANRS=6 cleanup for vidcontrol(1):delphij2005-01-133-93/+95
| | | | | | | | | | | | | - Use foo(void) instead of foo(). - Use static where applicable. - Apply more const's when passing parameters - signed/unsigned madness - Avoid namespace collision by adding underscores. - For 64-bit architectures, use %zx instead of %x when necessary. - When storing constants, use const instead of variable. - Bump WARNS?= from 2 to 6
* Fix typo %d -> %xemax2005-01-121-1/+1
| | | | | | | | | That should fix the problem with invalid PSM returned from bthidcontrol. Pointy hat goes to me. PR: misc/76107 Submitted by: Hiroyuki Aizu < aizu at navi dot org > MFC after: 1 day
* Document the -U option a bit more clearly.philip2005-01-111-0/+12
| | | | Submitted by: keramida
* Scheduled mdoc(7) sweep.ru2005-01-1111-67/+61
|
* Add -q to usage() and mark the "index" argument as optional.ru2005-01-111-1/+1
|
* - mdoc(7) cleanup.simon2005-01-111-17/+43
| | | | | | - Bump document date for last content change. Extended mdoc clue: ru
* Add -c to SYNOPSIS and usage().ru2005-01-112-3/+3
|
* Use the standard BSD copyright as per OpenBSD and /sys/net/slcompress*brian2005-01-102-31/+59
|
* Cast unsigned variables to intbrian2005-01-101-1/+1
|
* ifr_flagshigh is FreeBSD specificbrian2005-01-101-0/+6
|
* Integrate some OpenBSD alignment fixes. This hopefully also fixes PR 38058...brian2005-01-102-27/+35
| | | | Obtained from: Brad <brad@comstyle.com>
* Wording nit.trhodes2005-01-101-1/+1
|
* Cleanup usr.sbin/fd* so they can compile under WARNS=6.delphij2005-01-088-35/+39
| | | | | | | | | | | | | | | | | | | | | | | | fdcontrol/fdcontrol.c: - Add const constraint to an intermediate value which is not supposed to be changed elsewhere. fdread/fdread.c: - Use _devname in favor of devname to avoid name conflicit. - -1 is less than any positive number so in order to get the block to function, we should get the block a little earlier. - Cast to remove signed when we are sure that a return value is positive, or is compared with an positive number (tracknumber of a floppy disk is not likely to have UINT_MAX/2 anyway) fdread/fdutil.c: - Use more specific initializer fdwrite/fdwrite.c: - Use static on format_track since it's not referenced in other places. - Use const char* to represent string constant. Bump WARNS accordingly.
* Follow style.Makefile(5):delphij2005-01-081-1/+1
| | | | | | WARNS comes before CFLAGS This reduces diff against my local branch.
* Change the USB keyboard example to use /dev/ukbd0 instead of /dev/kbd1.brooks2005-01-081-2/+2
| | | | | | This example caused me to incorrectly believe that you must use the generic device nodes when you can in fact use either. It's often better to use the driver specific node.
* WARNS=6 cleanup. This includes:delphij2005-01-072-8/+10
| | | | | | | - Apply __unused on unused parameters - Use const where suitable - Use PRIu64 instead of the deprecated %q - Bump WARNS to 6
* Minor comment fix.kensmith2005-01-072-2/+2
| | | | MFC after: 1 week
* Document the -V and -U options in usage().philip2005-01-061-2/+2
| | | | Submitted by: Jordan Sissel <psionic@csh.rit.edu>
* Add forgotten -a to the usage() message.le2005-01-051-1/+1
|
* Teach sdpd(8) about 32-bit and 128-bit uuid's.emax2005-01-055-13/+162
| | | | MFC after: 3 days
* Rename 'class' field to 'uclass' in the ng_hci_inquiry_response structure.emax2005-01-041-1/+1
| | | | | | | class is a reserved word in C++ Submitted by: Markus Brueffer < markus AT brueffer DOT de > MFC after: 3 days
* Use __unused macro instead of a bare void for main().delphij2005-01-041-1/+1
| | | | Suggested by: nectar
* Update the INDEX file to INDEX-6paul2005-01-041-5/+5
|
* Use INDEX-6 for versions of FreeBSD > 600000paul2005-01-041-1/+3
|
* Remove old wdc driver completely.nyan2005-01-042-12/+0
|
* Allow usbd to handle event notificatiosn where mor ethan onejulian2005-01-041-47/+67
| | | | | | | | | device is involved, (e.g. plugin a hub with multiple devices already attached to it) Submitted by: Naoyuki Tai <ntai@smartfruit.com> PR: 43993 MFC in: 1 week
* nologin(8) does not seem to require any command line parameters,delphij2005-01-041-2/+2
| | | | | | | | | | | | so remove argc and argv from main() argument. At the same time, user and tt is not likely to be changed during execution so mark them const. This commit should guarantee nologin to pass WARNS=6. Tested on: i386 MFC After: 1 month
* Because the `permission' field in conf_entry is intended to be used asdelphij2005-01-041-1/+1
| | | | | | | | | | parameter 2 in chmod(2), which is a mode_t (and in turn a __uint_16_t), it's more likely that it should be defined as an unsigned variable. This commit should make newsyslog WARNS=6 clean, but don't bump the knob until I have a universe build. MFC After: 1 month
* Catch up with the kernel and set any global variables we are using, innjl2005-01-031-0/+6
| | | | | | particular, enabling interpreter workarounds for bad ASL. MFC after: 1 day
* o Remove duplicate includes.maxim2005-01-011-2/+0
| | | | | | PR: bin/75712 Submitted by: brueffer Obtained from: Dragonfly BSD
OpenPOWER on IntegriCloud