aboutsummaryrefslogtreecommitdiff
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* Provide an environment variabloe, EXPR_COMPAT, which disables optionGarrett Wollman2002-04-222-10/+27
| | | | | | | parsing for compatibility with old implementations. Notes: svn path=/head/; revision=95278
* Usage style sweep: spell "usage" with a small 'u'.Dag-Erling Smørgrav2002-04-221-1/+1
| | | | | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/. Notes: svn path=/head/; revision=95258
* Use `The .Nm utility'Philippe Charnier2002-04-211-23/+24
| | | | Notes: svn path=/head/; revision=95204
* Use `The .Nm utility'Philippe Charnier2002-04-203-6/+7
| | | | Notes: svn path=/head/; revision=95122
* Add a reference to the kenv(2) manpage.Maxime Henrion2002-04-181-0/+1
| | | | Notes: svn path=/head/; revision=95007
* Replaced exists() tests with two equivalent defined().Ruslan Ermilov2002-04-181-1/+1
| | | | | | | | LIBDIR is defined in bsd.own.mk but sys.mk no longer includes bsd.own.mk as of revision 1.60. Notes: svn path=/head/; revision=94985
* Use the new functionalities provided by the kenv(2) syscall.Maxime Henrion2002-04-173-66/+122
| | | | | | | Reviewed by: peter Notes: svn path=/head/; revision=94937
* Use `The .Nm utility'Philippe Charnier2002-04-169-29/+50
| | | | Notes: svn path=/head/; revision=94869
* ls(1) is utility not functionPhilippe Charnier2002-04-161-1/+1
| | | | Notes: svn path=/head/; revision=94868
* s/CMOS/hardware as talked about on cvs-committers.Tom Rhodes2002-04-161-1/+1
| | | | | | | | | Suggested by: sheldonh Approved by: bde MFC after: 1 day Notes: svn path=/head/; revision=94850
* Little nit pick in date(1) manual page, tell users which clock date(1)Tom Rhodes2002-04-151-0/+6
| | | | | | | | | sets PR: 35606 Notes: svn path=/head/; revision=94787
* Stop a null pointer dereference in the builtin hash function.George C A Reid2002-04-151-1/+4
| | | | | | | | | PR: 36141 Approved by: cracauer MFC after: 1 week Notes: svn path=/head/; revision=94775
* Document option to option dependancy. Fix typo.John W. De Boskey2002-04-151-3/+7
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=94712
* Do not return(f_returning_void());. Spell FALLTHROUGH to make it lint()able.Philippe Charnier2002-04-121-9/+15
| | | | Notes: svn path=/head/; revision=94553
* Introduce NO_RCMNDS flag so as to not compile rsh, rlogin, and rcp on will,Bosko Milekic2002-04-091-1/+4
| | | | | | | | | | and document in share/examples/etc/make.conf Submitted by: Aleksandar Simic <asimic@dsl.pipex.com> MFC after: 1 week Notes: svn path=/head/; revision=94297
* errx()/strerror() -> err()Chris D. Faulhaber2002-04-071-2/+2
| | | | Notes: svn path=/head/; revision=94030
* Various mdoc fixes, including a change that corrects spacing asGiorgos Keramidas2002-03-311-43/+53
| | | | | | | | | | | described in PR docs/36461. PR: docs/36461 Noticed by: Gary W. Swearingen <swear@blarg.net> Submitted by: ru Notes: svn path=/head/; revision=93486
* Use intmax_t as quad_t replacement, like in exprAndrey A. Chernov2002-03-281-5/+6
| | | | Notes: svn path=/head/; revision=93345
* Make the columns in the output of df(1) line up, even for very largeIan Dowse2002-03-261-39/+106
| | | | | | | | | | | filesystems. We now keep track of the maximum width required for every variable-width field instead of just the first one. PR: bin/15510 MFC after: 1 week Notes: svn path=/head/; revision=93246
* Install sys/security/lomac/*.h to /usr/include/security/lomac/.Ruslan Ermilov2002-03-262-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Install sys/<arch>/include/pc/*.h to /usr/include/machine/pc/. PR: docs/29534 Install sys/netatm/*/*.h to /usr/include/netatm/*/. Don't install compatibility symlinks for <machine/soundcard.h> and <machine/joystick.h>. Three years is enough to be aware of the change, and these weren't visible in the SHARED=symlinks case. Back out include/Makefile,v 1.160 that was a null change anyway due to the bug in the path, and we now don't want to install these headers because they would otherwise be invisible in the SHARED=symlinks case. Don't install IPFILTER headers. Userland utilities fetch them directly, and they were not visible in the SHARED=symlinks case. Resurrect SHARED=symlinks in Makefile.inc1. PR: bin/28002 Prodded by: bde MFC after: 2 weeks Notes: svn path=/head/; revision=93229
* Replace use of __progname with the functionally identical and moreMark Murray2002-03-241-15/+14
| | | | | | | acceptable getprogname(3). Notes: svn path=/head/; revision=93101
* Disable -Werror when building -- the old version of gcc used on IA32 can'tGarrett Wollman2002-03-231-0/+2
| | | | | | | deal with C99 formats. Notes: svn path=/head/; revision=92997
* Typo (if => of).Garrett Wollman2002-03-221-1/+1
| | | | Notes: svn path=/head/; revision=92984
* Add a word of caution about integer arithmetic range and overflow detection.Garrett Wollman2002-03-221-0/+6
| | | | Notes: svn path=/head/; revision=92983
* Fix a few formatting brainos and make the formatting of the EXAMPLESGarrett Wollman2002-03-221-6/+9
| | | | | | | section somewhat clearer. Notes: svn path=/head/; revision=92982
* Make expr POSIX-compliant, and fix some bugs. Specifically:Garrett Wollman2002-03-222-104/+215
| | | | | | | | | | | | | | | | - expr must conform to the Utility Syntax Guidelines, so use getopt() to eat the (non-existent) options. - Use the Standard type intmax_t for arithmetic. - If an argument cannot be *completely* converted to an integer, then it is a string. Additionally make some style cleanups near the modified lines. This utility is still not completely style-compliant. Notes: svn path=/head/; revision=92979
* Update SCM ID.David E. O'Brien2002-03-221-2/+2
| | | | Notes: svn path=/head/; revision=92974
* Note that -n is non-standard.David E. O'Brien2002-03-221-1/+3
| | | | Notes: svn path=/head/; revision=92973
* No need to cast; ().gr_gid is already the correct type.Mark Murray2002-03-221-1/+1
| | | | Notes: svn path=/head/; revision=92956
* Add the -n option, which automatically answers "no" to the overwrite question.David E. O'Brien2002-03-222-6/+27
| | | | Notes: svn path=/head/; revision=92935
* remove __PWarner Losh2002-03-221-2/+2
| | | | Notes: svn path=/head/; revision=92920
* mdoc(7) police: use precise width specifier.Ruslan Ermilov2002-03-151-1/+1
| | | | Notes: svn path=/head/; revision=92332
* NAI DBA update.Robert Watson2002-03-144-4/+4
| | | | Notes: svn path=/head/; revision=92294
* 1) Rev.1.35 of dd.c has a more serious regression. It backs out rev.1.31,Mark Murray2002-03-071-1/+2
| | | | | | | | | | | thus breaking systems with unpolluted <sys/stat.h>'s. 2) Back out an initialisation of a variable in BSS. Reported by: bde (1), many(2) Notes: svn path=/head/; revision=91807
* Log:Maxim Konovalov2002-03-061-10/+6
| | | | | | | | | | | | | | Remove eaccess(2) absence workaround. Add eaccess(2) checks for FILRD, FILWR, FILEX and FILEXIST cases. We cannot MFC this because there is no eaccess(2) in -stable yet. PR: bin/35076 Reviewed by: ru Approved by: ru Notes: svn path=/head/; revision=91737
* Use ANSI-99 int names (uintXX_t) over traditional BSD int namesWarner Losh2002-03-051-5/+6
| | | | | | | (u_intXX_t). Notes: svn path=/head/; revision=91665
* Use NLSLINKS to setup symbolic links in NLS areaAlexey Zelkin2002-03-041-27/+10
| | | | Notes: svn path=/head/; revision=91633
* This file is not used anymoreAlexey Zelkin2002-03-041-17/+0
| | | | Notes: svn path=/head/; revision=91629
* Use bsd.nls.mk for building/installing NLS filesAlexey Zelkin2002-03-0411-185/+48
| | | | | | | XXX: links handling simplify Notes: svn path=/head/; revision=91627
* clarify code:Alfred Perlstein2002-03-041-6/+19
| | | | | | | | | | add comments. don't get the length of each arg passed, only the last one. check against == or != NULL rather than using a pointer value as truth test. Notes: svn path=/head/; revision=91614
* Update STANDARDS section on rm(1) to reflect current conformance.Doug White2002-03-021-16/+2
| | | | | | | PR: 35471 Notes: svn path=/head/; revision=91555
* Add (unsigned char) cast lost in WARNS=4 fixes which break 8bit localesAndrey A. Chernov2002-02-281-1/+1
| | | | | | | PR: 35421 Notes: svn path=/head/; revision=91498
* Fix a bug introduced in rev.1.23 - for some reason mkdir("/", ...) systemMaxim Sobolev2002-02-251-1/+1
| | | | | | | | | | call returns `EISDIR', not `EEXIST', so that be prepared for that. This should fix number of ports, that often call `mkdir -p //usr/local/foobar'. This is just a quick workaround, the real fix would be either to avoid calling mkdir("/", ...) or fix VFS code to return consistent errno for this case. Notes: svn path=/head/; revision=91235
* #include <time.h> for the definition of time functions instead ofBruce Evans2002-02-251-2/+1
| | | | | | | | | depending on namespace pollution 2 layers deep in <sys/stat.h>. Removed unused includes. Notes: svn path=/head/; revision=91212
* Fixed unsorting.Bruce Evans2002-02-231-6/+6
| | | | Notes: svn path=/head/; revision=91171
* Fixed some style bugs in revs 1.1 and 1.4.Bruce Evans2002-02-231-4/+4
| | | | Notes: svn path=/head/; revision=91146
* ANSIfy.Mark Murray2002-02-221-1/+1
| | | | Notes: svn path=/head/; revision=91089
* Fix warnings inspired by lint, a commercial lint and WARNS=4.Mark Murray2002-02-224-21/+20
| | | | Notes: svn path=/head/; revision=91087
* Fix a boatload of warnings inspired by lint, a commercial lintMark Murray2002-02-221-16/+14
| | | | | | | and WARNS=4. Notes: svn path=/head/; revision=91086
* Warnings fixes.Mark Murray2002-02-221-1/+2
| | | | Notes: svn path=/head/; revision=91085