summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Document another (less-virulent) CRLF-related bug.hoek1999-05-021-0/+2
|
* Don't use STDOUT_TOP.des1999-05-011-3/+3
| | | | Submitted by: Christopher Masto <chris@netmonger.net>
* Change references from "passwordperiod" to "passwordtime", sincehoek1999-04-301-2/+2
| | | | | | "passwordtime" is what passwd(1) has actually been using. I suspect passwordperiod was the original intent. I can't figure-out which, if either, BSDi uses. If anyone knows...
* Tcopy uses 32 bit unsigned to accumulate a count of bytes read/written.phk1999-04-302-15/+51
| | | | | | | | | | | | That doesn't work well for tapes over 4G. I use tcopy a lot to write images of a tape to tape as tape to tape copying is terribly slow. Slower than it should be. Quickly found out tcopy can not rewind a file when doing copy/verify. PR: 11386 Submitted by: David Kelly dkelly@hiwaay.net Reviewed by: phk
* Remove documentation of CRLF bug from more.1. Sync code with manpage.hoek1999-04-293-26/+18
| | | | | PR: bin/961 bin/7296 (fix) Submitted by: Garance Alistair Drosehn <gad@eclipse.acs.rpi.edu>
* Correct reference to '/dev/rst0' to the more correct "/dev/rsa0".jkoshy1999-04-281-1/+1
| | | | | PR: 11347 Submitted by: Christian Weisgerber
* Add support for printing bridging statistics with ``-p bdg '' .luigi1999-04-264-2/+42
| | | | If someone has a better flag to use I'll be glad to change it.
* Move an option outside of a nested list and up a bit to live free amongkris1999-04-261-3/+3
| | | | its brothers and sisters.
* More egcs warning fixes:imp1999-04-2510-16/+23
| | | | | | | | | | o main returns int not void o use return 0 at end of main when needed o use braces to avoid potentially ambiguous else o don't default to type int o #ifdef 0 -> #if 0 Reviewed by: obrien and chuckr
* The infrastructure to build these fellows has been replaced with kld.peter1999-04-244-292/+0
|
* remove uid switching before login_getpwclass, now done inside libutilache1999-04-241-3/+6
| | | | add gid switching before chdir and comment why it needed
* fix -n with 16-chars hostnames, modified patch from PRache1999-04-221-4/+7
| | | | | PR: 11286 Submitted by: Hans Huebner <hans@chaosradio.berlin.ccc.de>
* Fix the display of the "nice" value of processes like ntpd that use thejhay1999-04-221-2/+2
| | | | | | posix sched_setscheduler() to set their priority. Noticed by: Mark Allwright <mallwri@orion.didata.co.za>
* IPX address formatting nit.billf1999-04-201-2/+2
| | | | | PR: bin/11179 Submitted by: Dan Nelson <dnelson@emsphone.com>
* Clarify wording to indicate that the arguments to find(1) are path namesjkoshy1999-04-191-6/+6
| | | | | | | | | (and can be both files or directories). Show white space between "(", ")", "!" and their corresponding `expression' arguments as expected by the expression parser inside find(1). Prompted by: David Honig <David.Honig@idt.com> on freebsd-doc Message-Id: <199904132055.NAA09432@justinian.Eng.idt.com>
* Add :Q to quote variable expansion to all proper expansion ofimp1999-04-192-2/+49
| | | | | | | variables for recursive makes. This makes it less painful to cross build recent NetBSD kernels on FreeBSD. Obtained from: NetBSD
* Use const where appropriate.steve1999-04-191-2/+2
| | | | | | PR: 10739 Submitted by: Stephen J. Rosnowski <sjr@home.net> Obtained from: NetBSD PR 6151
* Disconnect modload/modunload/modstat from their Makefiles..peter1999-04-181-2/+1
|
* Clean up the skeleton code a little. There was a #ifdef to avoidpeter1999-04-181-9/+1
| | | | | stdlib.h unless on C++. However, we already included it above, so there was no point using the redundant declarations instead.
* Turn off f2c. Superseeded by EGCS's g77.obrien1999-04-181-2/+1
|
* X11 include directory may not actually contain any header file, check forluoqi1999-04-171-2/+2
| | | | a specific one (X11/X.h).
* Nuke lsock(1).des1999-04-153-146/+0
|
* lsock(1) -> sockstat(1)des1999-04-151-2/+2
|
* Rename lsock(1) to sockstat(1).des1999-04-153-0/+146
| | | | | Suggested by: Sheldon Hearn <sheldonh@iafrica.com> Approved by: Peter Wemm <peter@netplex.com.au>
* Activate lsock(1).des1999-04-141-1/+2
|
* Import lsock(1), a Perl script for listing open Internet sockets.des1999-04-143-0/+146
|
* Typo fix.ghelmer1999-04-131-2/+2
| | | | PR: docs/11022
* Correct a link problem with zh_TW.BIG5, make the display reasonable.foxfair1999-04-101-2/+8
|
* Don't perform the trimdomain() functionality twice,brian1999-04-071-12/+3
| | | | trimdomain() now works as expected.
* Rename a function to avoid conflict with the new syscall 'pwrite'.dt1999-04-044-18/+18
|
* Further backouts and changes to the example.cracauer1999-04-041-8/+22
| | | | | getopt in bourne shell is in fact hard. Maybe perl isn't *that* bad after all...
* Back out part of previous commit.cracauer1999-04-042-27/+16
| | | | | | | | | Arguments with whitespaces are easy to fix, but in combination with shell metachars that should not be evaluated it is very hard, probably impossible to fix without going to a line-oriented solution. Next time I will believe Henry Spencer when he says "this looks easy to fix but isn't".
* 1) Fix the case where a shellscript using getopt is called with acracauer1999-04-032-18/+39
| | | | | | | | | | | | | | | | | | | | | | parameter that has space in it, both in getopt.c and in the manpage example. 2) Fix the example in the manpage. The set(1) command is required to return 0 (POSIX 1003.2, section 3.14.11), so you can't test for getopt's exit status like the example did: #! /bin/sh set -- `getopt abo: $*` if test $? != 0 # wrong, tests for set's exit status, which is # always zero, no for getopt(1)'s. Fixes PR bin/5845, which thought it was getopt's fault, but in fact the manpage was wrong. I also updated the example to be more useful and updated the BUGS section. PR: bin/5845
* fix sign extension bugache1999-04-011-1/+1
| | | | Submitted by: Nikolai Saoukh <nms@ethereal.ru>
* Get things right for tty names of length UT_LINESIZE.brian1999-03-311-16/+15
| | | | | | Cosmetic: Don't shadow the `p' variable. Remove two unused variables. PR: 3638
* malloc(3) need to allocate one byte more.phk1999-03-291-2/+2
| | | | | PR: 10855 Submitted by: Petteri Holländer <pete@iki.fi>
* Due to the switch form Julian to Gregorian calender,helbig1999-03-271-9/+14
| | | | | | even a whole month might be missing. This caused a bug for the LN -calender, whose switch was on Dec 12, 9999.
* Display floats with format %*.0f instead of as "*****" if there isbde1999-03-221-1/+5
| | | | | enough space for this but not enough space for the normal %*.*f format. Similarly for long doubles.
* An even number of nodes, not node pairs are required for tsort(1) to work.billf1999-03-201-1/+1
| | | | | | | Pairs are inherently even. PR: docs/9264 Submitted by: NAGAO Tadaaki <nagao@iij.ad.jp>
* Supporting locale for Chinese Big5 completely.foxfair1999-03-201-2/+2
|
* Disable setgid kmem for now.imp1999-03-161-2/+2
|
* Reference the sysctl variables related to various limits.ghelmer1999-03-151-4/+13
| | | | PR: docs/6764
* Grammar nits, double negativesbillf1999-03-151-4/+4
| | | | | PR: docs/10491 Submitted By: Tom Hukins <tom@eborcom.com>
* Fixes alignment of blocksize field to be prettier ifmjacob1999-03-101-7/+7
| | | | | longest density code && density name is used. Obtained from: Ken Merry
* Fix fstat compatibility by printing the address of the tcppcb instead ofdes1999-03-101-3/+7
| | | | | | | that of the regular socket pcb for TCP sockets. PR: bin/9963 Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
* Adds the '-p' option to make time(1) output POSIX.2 compliant.roberto1999-03-102-21/+63
| | | | | | | | | | Updates the manpage as well. I've rewritten the patch as it was for 2.2.7. It can probably be put into 3.1-STABLE as well. PR: bin/10515 Submitted by: Jens Schweikhardt <schweikh@noc.dfn.de>
* get rid of space padding for compressionmjacob1999-03-101-2/+2
|
* Restore \n at end of usage message.wollman1999-03-081-2/+2
| | | | Complained-about-by: charnier
* Fix display of example usage.ghelmer1999-03-071-1/+2
| | | | PR: docs/9833
* Oops, the test for "no-cpu" was inverted.bde1999-03-071-2/+2
| | | | Submitted by: Seigo TANIMURA <tanimura@naklab.dnj.ynu.ac.jp>
OpenPOWER on IntegriCloud