summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Update an offset field for i386 a.out core files, so that the programjdp1996-04-181-1/+1
| | | | | | | name comes out right again. Note: Don't bring this change directly into the -stable branch. The appropriate offset for -stable is different.
* Fix a typo in the syntax for indirect offsets.jdp1996-04-181-2/+2
|
* Document that ipx is a valid protocol for the -f option.jhay1996-04-131-5/+8
| | | | Comment out ns and iso. They are not supported anymore.
* Changed all per-file errors to warnings. Exit with a nonzero status ofbde1996-04-131-55/+48
| | | | | | | if there was a per-file error. My test case of `wc /proc/curproc/*' works reasonably now (much like `size /proc/curproc/*'. Reviewed by: wosch
* Print some warnings if root invokes chpass and sets thempp1996-04-111-0/+19
| | | | | | | | | | | | | | | | | shell to one of the following: - a non-existent file - a non-regular file - a file without any execute bits set The shell is still set to whatever they entered even if the above conditions exist (hey, it is the super user doing this after all :-), but this might give the admin. some warning that they are about to screw themselves and give them a chance to fix it before it is too late. Inspired by: some new FreeBSD user on USENET who set his root shell to a shell that doesn't exist and now can't gain access to root (don't worry, I sent him some mail on how to recover from this).
* Do not exit if a file is not readable. This is a short hackwosch1996-04-101-2/+4
| | | | until someone rewrite wc(1).
* Correctly match the format flags and their descriptions.mpp1996-04-091-1/+1
| | | | Submitted by: Dave Glowacki <dglo@ssec.wisc.edu>
* Easter was one day to fast.wosch1996-04-091-3/+3
| | | | Unix use days *since* January 1 [0-365], not the 1th day of year etc.
* Do not include math.h because it isn't used and it causesmpp1996-04-092-2/+0
| | | | | | | | | | | | "make world" to fail if you use the msun math library and blow away /usr/include and then do "make world". This is because the msun math.h isn't installed with the other include files before xlint is built. It finally gets installed when the msun library is built. Perhaps "make world" should install the msun math.h file if it doesn't install the CSRG math.h, to prevent problems like this in the future.
* Don't reference NULL pointers if owner and/or group are omitted.joerg1996-04-081-3/+5
| | | | Pointed out by: somebody on the mailing list who's name i forgot
* Correct some man page xrefs, and some other minor changes to bring somempp1996-04-084-10/+11
| | | | | | man pages up to mdoc guidelines and fix some minor formatting glitches. Also fixed a number of man pages to not abuse the .Xr macro to display functions and path names and a lot of other junk.
* Use strtoq() instead of strtol() so that large inums, and sizes can bebde1996-04-071-4/+4
| | | | | | | specified. Not fixed: specification of large uids and gids; silent truncation of unrepresentable values.
* Fix a typo.joerg1996-04-071-1/+1
| | | | Submitted by: tgm@netcom.com (Thomas G. McWilliams)
* Correct some man page cross references and file location references.mpp1996-04-074-10/+10
|
* Correct some cross references and some path names.mpp1996-04-062-3/+3
|
* Submitted by: archie@tribe.comjulian1996-04-062-6/+78
| | | | | | allow the user to install using a Numeric GID or UID. this brings it in to line with chgrp and chown, ans is required by some people using FreeBSD in a product.
* Change calendar to report the actual date for variable day events.mpp1996-04-066-37/+63
| | | | | | | | | | | | | | | | | | | | | | | E.g. for Easter, and entries like "04/SunFirst" calendar will now report: 04/05* Good Friday (2 days before easter) 04/07* First Sunday... instead of: Easter-2 Good Friday... 04/SunFirst First Sunday... I also modified the calendar files to use the variable day format for a lot of events so that they will be reported correctly. E.g. U.S. daylight savings time is now listed as: 04/SunFirst Daylight savings time... There are still a lot of wrong dates in there for some events that move from year to year, but I don't have a good calendar handy right now that I can use for reference.
* $* -> $@wosch1996-04-051-18/+19
| | | | check exit code from $MKDEP_CPP, not sed(1)
* Xref clocks(7).joerg1996-04-051-0/+1
|
* Cast to unsigned char instead of unsignedache1996-04-031-2/+2
| | | | Cast ctype argument to unsigned char
* Removed the definition of the make variable SHAREDIR. It was clashingjdp1996-04-021-3/+2
| | | | with the definition in bsd.own.mk, causing "make world" to fall over.
* Don't build the special case lint libraries.paul1996-03-313-3/+3
|
* Localize timeache1996-03-312-1/+7
|
* Renamed Proc-cache to Dir-cache for the same reasons as in vmstat.bde1996-03-291-3/+3
| | | | Tweaked screen positions to match.
* Make sure there is a linefeed at the end of generated HTML files.jfieber1996-03-261-3/+3
|
* Move llib-lstdc to llib-lc since that's what lint expects.paul1996-03-242-3/+3
|
* Re-enable building of lint libraries.paul1996-03-241-2/+1
|
* Build and install llib-lstdc.ln. Disable Posix version.paul1996-03-241-2/+3
| | | | Change install mode from NONBINMODE to LIBMODE
* Add xlintpaul1996-03-241-2/+2
|
* Don't build lint libraries for the moment.paul1996-03-241-1/+2
|
* Cast char's to (u_char) before passing them to isctype() functions.joerg1996-03-191-2/+2
|
* Fixed a type mismatch in crufty misconfigured compatibilty code.bde1996-03-191-1/+1
|
* Minor correction regarding the last line of an uuencoded file.joerg1996-03-171-1/+1
| | | | Submitted by: Giles Lean <giles@topaz.nemeton.com.au>
* Fix a couple of sign-extension bugs.joerg1996-03-171-2/+2
| | | | Submitted by: serg@bcs1.bcs.zaporizhzhe.ua (Sergey Shkonda)
* Allow the user to disable the use of T/TCP by setting the -T option.olah1996-03-153-4/+20
| | | | This option becomes useless when all TCP stacks are fixed out there.
* remove /usr/ucb from pathwosch1996-03-122-8/+1
| | | | cleanup Makefile
* Increment network byte order properlyache1996-03-121-3/+3
| | | | Reviewed by: wollman
* Make su a little less fascist about using Kerberos if it is notmarkm1996-03-111-6/+7
| | | | | | | configured or available. Also fix a _nasty_ bug that would let one in if su -K was used. Any old password would work :-( :-(.
* Move #include of queue.h before #include of socketvar.h in preparation fordg1996-03-116-3/+6
| | | | struct socket changes.
* Include queue.h in preparation of struct socket changes.dg1996-03-111-0/+1
|
* Include queue.h in preparation for upcoming struct socket changes.dg1996-03-111-0/+1
|
* Fix some grammer problems.mpp1996-03-111-7/+4
|
* Add the -x option to the usage string.mpp1996-03-111-2/+2
| | | | Submitted by: Philippe Charnier <charnier@lirmm.fr>
* Fix a couple of typos.mpp1996-03-111-3/+3
| | | | Submitted by: Philippe Charnier <charnier@limrr.fr>
* Change an incorrect reference to the "-n" flag to "-#".mpp1996-03-111-1/+1
| | | | | Submitted by: Masanobu Saitoh <msaitoh@spa.is.uec.ac.jp> Obtained from: NetBSD-bugs mailing list
* From Lite2: rename fs to vfs.hsu1996-03-111-2/+2
|
* Print 8bit chars from the net if current locale allows themache1996-03-101-2/+3
|
* Make talk automagically find out the interface IP address where thejoerg1996-03-0914-54/+207
| | | | | | | remote peer will be connected through. This avoids the ``Checking for invitation on caller's machine'' problem for multi-homed hosts. Thanks to: Garrett, for his `find_interface' example
* Better integrate kerberos into su so that if an incorrect Kerberosmarkm1996-03-092-32/+53
| | | | | | | password is entered, the user is not prompted for a password a second time. This closes pr-bin/1006.
* Phkmalloc strikes again.phk1996-03-071-1/+1
| | | | Found by: asami
OpenPOWER on IntegriCloud