summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Free memory from setmode.imp1998-12-161-1/+2
| | | | Obtained from: OpenBSD
* Return memory from setmode.imp1998-12-161-0/+1
| | | | Obtained from: OpenBSD
* The perlinterp option builds and works, but I'm not so sure how it'll gopeter1998-12-161-5/+6
| | | | in a release or buildworld environment, so I'll leave it disabled.
* Generate a prototype for initialize_XXXX_error_table() when the languagedes1998-12-151-3/+3
| | | | is set to C.
* Add "-N" option to supress reverse name lookup.billf1998-12-145-3/+12
| | | | | | | This comes in really handy when you're telneting the broken DNS server by IP. PR: bin/8698
* Added support for DIS 8859-15 based locales using patchdillon1998-12-142-1/+53
| | | | | | from Kaleb. Obtained from: Kaleb Keithley <kaleb@ics.com>
* Change the wording to reflect that only the first character of the twosteve1998-12-131-2/+2
| | | | | | arguments to changequote are significant. PR: 8282
* Fixed disordering of cross references in previous commit.bde1998-12-131-3/+3
|
* PR: bin/9016dillon1998-12-131-3/+8
| | | | | | | | | Fix bug with od/hd/hexdump. "*" lines are supposed to indicate one or duplicates of the previous line, but a small file with less then 16 characters of zeros in it will be falsy identified as a repeat of the (non-existant) previous line. i.e. the first line of output winds up being a "*". Added a bit of code to handle the degenerate 'there is no previous line' case for the first line.
* PR: bin/8680dillon1998-12-131-4/+3
| | | | | Minor adjustments to rwall.c. Increased the size of a couple of char arrays and replaced a potentially dangeerous strcpy/strcat with snprintf().
* PR: bin/8680dillon1998-12-131-6/+8
| | | | | | Increase the size of a number of buffers and replace strcpy/strcat/sprintf with snprintf(). There was a minor and possibly not exploitable security hole related to one sprintf().
* Add reference to login.conf(5)dillon1998-12-131-2/+3
|
* PR: docs/9045dillon1998-12-131-27/+31
| | | | | | Update chpass(1) manual page. Change the definition of the class field and also reorganize the field list to match that of the /etc/master.passwd file, to avoid confusion.
* Better error checking.eivind1998-12-091-3/+4
|
* Fix a new bug introduced by the previous bug fixarchie1998-12-083-10/+23
|
* Add -s option, just report size of file that would be fetched.cracauer1998-12-085-8/+67
| | | | Reviewed by: -current list
* Fixed warnx format errors in printf and csh, and snprintf format errorsbde1998-12-071-7/+11
| | | | | | in sh, by using separate macros for the 1, 2 and 3-arg calls to warnx. (The 3-arg warnx macro in sh/bltin/bltin.h used to require bogus dummy args.)
* Fix brokenness compiling "s/pat/subst/" when length of subst is >= 4090 chars.archie1998-12-071-3/+6
| | | | PR: bin/7939
* Compile -Wallarchie1998-12-072-2/+3
|
* Tweaks to allow compiling -Wall (mostly adding "const" to char rcsid[]).archie1998-12-0670-87/+121
|
* Eliminate compiler warnings from -Wallarchie1998-12-065-6/+9
|
* Eliminate compiler warnings from -Wallarchie1998-12-0611-16/+16
|
* Obtained from: "Jan B. Koum " <jkb@best.com>dillon1998-12-012-3/+5
| | | | | Add a reference to pam(8) in the login(1) and login.access(5) manual pages.
* We use login.conf, not login.capbillf1998-11-301-2/+2
| | | | | PR: doc/8897 Submitted by: Jonathan Hanna <pangolin@home.com>
* Set TMPDIR to /tmpwosch1998-11-291-9/+7
| | | | | Use the new find option -s for sorted output. Remove the temp directory in trap.
* Described the search path Make uses to find makefiles.pds1998-11-291-4/+37
|
* Fixed style bugs in previous commit.bde1998-11-291-1/+1
|
* Fixed English in previous commit. Clarify "lexicographical order".bde1998-11-291-8/+14
| | | | | Don't format paragraphs manually (new sentences not beginning on new lines give hard-formatted line breaks).
* Fixed my English fixes.bde1998-11-292-2/+3
|
* Fixed style bugs and English in previous commit.bde1998-11-291-15/+16
|
* Fixed disorder and and usage message. Improved English.bde1998-11-291-2/+2
| | | | Broken in: previous commit
* Fixed disordering in previous commit.bde1998-11-291-1/+1
|
* Set TMPDIR to /tmpwosch1998-11-291-14/+35
| | | | | | | | | Remove the temp directory in trap. Replace the buggy awk script with a correct perl script. Don't make a copy of the input data anymore if the input is already sorted (option -presort). This scheme avoid large temporary files in /tmp.
* Recommended TMPDIR is now /tmp (undo rev 1.6)wosch1998-11-291-2/+2
|
* Added a sort option to find(1).wosch1998-11-294-5/+37
| | | | | The sort option make it possible to build the locate database without large (usually 20-100MB) temp files.
* Removed unused nlist'ed variables stathz and hz. These used to be usedbde1998-11-261-26/+13
| | | | | | | | to half compensate for broken scaling of p_pctcpu in the kernel, but the previous commit removed this compensation. %cpu values will be wrong by a factor of stathz/hz until the kernel is fixed. (The kernel gets it wrong by a factor of stathz/hz, and top got the compensation wrong by a factor of 100/stathz.)
* Port top to the alpha.dfr1998-11-251-4/+4
| | | | Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
* Work around the problem that login won't link if NOSHARED=yes,jdp1998-11-211-1/+2
| | | | | | | | | | because libpam is built shared only. There is a way to build PAM into a static library that contains all (or a selected subset) of the modules. But our Makefiles don't support that yet. Until I get that working, just force NOSHARED=no in login's Makefile. Of course, it still won't work if NOPIC is set. Submitted by: bde
* ATTENTION: INSTALL "/etc/pam.conf" FROM "src/etc"!!!jdp1998-11-213-326/+149
| | | | | | | | Change login to use PAM for authentication. I kept the built-in passwd/NIS authentication support, to handle cases where the system is missing its "/etc/pam.conf" file. S/Key and KerberosIV authentication methods are removed from the login program, but still available in PAM modules.
* Updated gencat(1) page from T. Lambert:jkoshy1998-11-181-16/+132
| | | | | | | | | | | | "Here is a new gencat(1) man page. It contains examples and information not in the current man page (e.g., file format) per the X/Open documentation. It also updates some aspects of the X/Open documentation (e.g., the X/Open document neglects to say how to embed a $quote character into a string)." Submitted by: Terry Lambert <tlambert@primenet.com> Review and small corrections by: jkoshy
* Update tcopy for CAM. (/dev/rst0 -> /dev/rsa0)ken1998-11-161-1/+1
| | | | | PR: i386/8688 Submitted by: Bill Trost <trost@cloud.rain.com>
* Fixed missing 'v' in usage message.bde1998-11-151-2/+2
|
* Fixed bugs in previous commit:bde1998-11-151-4/+5
| | | | | | - missing `v' in synopsis. - 'v' disordered relative to 'V' in description of options. - line too long in description of 'v'.
* New file formats.obrien1998-11-1518-0/+645
| | | | Obtained from: NetBSD-current/src/usr.bin/file/magdir
* Additional file formats.obrien1998-11-151-7/+38
| | | | Obtained from: NetBSD-current/src/usr.bin/file/magdir/msdos
* Added a -v (verbose) option and hid multi-job file banner generationdg1998-11-144-7/+15
| | | | behind it.
* unifdef -DLOGIN_CAP. After almost 2 years, I think we can assumejdp1998-11-112-75/+4
| | | | | | it's here to stay. This code is starting to look almost reasonable again.
* Remove support for LOGIN_CAP_AUTH. It was never enabled, it wasjdp1998-11-112-131/+5
| | | | | | | | | not complete, and it hasn't been touched for 18 months. All the ifdefs obfuscate the code. I discussed the LOGIN_CAP_AUTH support with its author and he agreed that it is a dead end. I am bringing PAM into the tree within the next two weeks. It is much more flexible than LOGIN_CAP_AUTH, and will serve as a superior replacement for it.
* Fix a const-related compiler warning.jdp1998-11-111-2/+3
|
* Fixed disorder.bde1998-11-101-2/+2
|
OpenPOWER on IntegriCloud