Commit Graph

6214 Commits

Author SHA1 Message Date
wiz ceff784594 Two typos. From Adrian Mrva. eg -> e.g. 2002-10-02 16:04:58 +00:00
wiz 20fb5b240f Typo and Americanism. From Adrian Mrva. 2002-10-02 15:56:27 +00:00
wiz b26b3aa84e file system, not filesystem. 2002-10-02 15:53:47 +00:00
wiz 7601fe2090 usable instead of useable. From Adrian Mrva. 2002-10-02 15:20:10 +00:00
jdolecek ee8bfae14a couple minor changes:
* move buffer[] to print_passwd(); it's used only there
* make trim(), usage(), print_passwd() static, and g/c no longer needed
  prototypes for them
* replace __progname with getprogname()/setprogname()
* move the prototypes for pwd_getsalt()/to64() outside of print_passwd()

change reviewed by Niels
2002-10-02 13:39:10 +00:00
wiz f6bcf4feae DEFINITIONS, not DEFINITONS. By Adrian Mrva. 2002-10-02 11:17:41 +00:00
wiz 601c22ea2d interpret, not interpet. By Adrian Mrva. 2002-10-02 11:15:06 +00:00
wiz ee1588020b omitted, not ommitted. 2002-10-02 10:34:45 +00:00
wiz 4c79a32365 conjuction -> conjunction. 2002-10-02 10:09:51 +00:00
wiz 57947ac563 Fix two typos. 2002-10-02 10:07:05 +00:00
wiz 765c48615e filesystem -> file system, writeable -> writable. 2002-10-02 10:02:01 +00:00
wiz a2c3d8fd5d Add NetBSD RCS Id. Sort options. 2002-10-02 07:35:29 +00:00
provos 7778def8eb add pwhash 2002-10-01 20:50:25 +00:00
provos d15e0fa262 password hashing utility that allows des, md5 or bcrypt passwords to be
created in scripts;  tool originally from downsj@openbsd.org;
approved by perry.
2002-10-01 20:48:58 +00:00
mrg 88f885d72e print the file name in verbose mode as well. avoid printing (null) for encoding. 2002-10-01 20:22:10 +00:00
itojun ef7d24574a upgrade to openssh 3.5. major changes include:
- krb4/5 support for privsep (krb5 diff was already applied)

includes fake implementaation of getpeereid() from openssh-portable, which
does nothing useful - need improvement.
2002-10-01 14:07:26 +00:00
wiz d6eecef728 Lose a trailing space. 2002-10-01 11:04:12 +00:00
grant be8ae688ae New sentence, new line. 2002-09-30 11:08:56 +00:00
grant 6f52a8d075 minor mdoc quoting nit. 2002-09-30 10:41:54 +00:00
grant c3f8c787a1 New sentence, new line. Some mdoc cleanup. 2002-09-30 10:39:22 +00:00
grant 48b31946b5 New sentence, new line. Some mdoc cleanup. 2002-09-30 10:32:16 +00:00
grant 13162890c3 New sentence, new line. Some mdoc cleanup. 2002-09-30 10:21:14 +00:00
grant 1dd7696b53 New sentence, new line. Some mdoc cleanup. 2002-09-30 09:45:23 +00:00
grant b8836fd1a4 New sentence, new line. Some mdoc cleanup. 2002-09-30 09:33:39 +00:00
grant 9c6e01642a New sentence, new line. Some mdoc cleanup. 2002-09-30 08:04:27 +00:00
enami d945092654 Use the right file to output merge result. 2002-09-30 05:09:25 +00:00
is 78a5ad1963 0 is a valid value for the absolute minute to stop playing. Initialize
to UINT_MAX before scanning, and check for UINT_MAX to detect whether it
was set.
Without this, it is not possible to play the first less than a minute of
a CD using absolute msf addresses.
2002-09-28 21:48:35 +00:00
provos eed5376ebe forgot to remove local define of blocksize; noticed by Benedikt Meurer
change totalblocks to int64 to prevent integer overflow.
2002-09-28 21:14:03 +00:00
wiz 826d3a8737 Clean up after recent changes.
Some notes:
\- is for minus signs only.
Closing braces and punctuation after a macro should definitly not be
on the next line, but at the end of the macro line, separated with spaces
from the macro argument and each other. Otherwise, unwanted whitespace
appears.
2002-09-28 12:59:49 +00:00
wiz 17cf386a88 Bump date for .Op Ar file addition. 2002-09-28 12:40:41 +00:00
grant 714cd00ddf bump date for latest changes. 2002-09-28 12:34:53 +00:00
dbj dcb93e552f recognize Apple UFS Volume labels 2002-09-28 01:22:25 +00:00
thorpej 386e1779c2 Need <string.h>. 2002-09-27 23:29:12 +00:00
atatat 3db0e47b56 Make the randomness a tad more random. It's still not terribly
random, but it's considerably less lame now.

before% echo `jot -r 5` ; echo `jot -r 5`
66 5 78 82 66
66 5 78 82 66

after% echo `jot -r 5` ; echo `jot -r 5`
15 94 47 32 25
78 52 73 52 47
2002-09-27 20:54:51 +00:00
atatat 76df260979 Allow passing of the ktrace file as the last argument without a -f. 2002-09-27 20:31:44 +00:00
grant 2812905360 New sentence, new line and minor mdoc cleanup. 2002-09-27 16:56:53 +00:00
provos 9972ef9ff8 support for -empty, -execdir, -mindepth, -maxdepth to match other UNIX-like
systems.  based on work by tholo@openbsd.org.  approved by perry.
2002-09-27 15:56:25 +00:00
wiz 8ac3f34222 Sort options. Bump date for -h addition. Begin new sentences on new lines(!).
The abbreviation for 'kilo' is still a small 'k', not a capital one.
Add -h to the list of options that disable display in default blocksize.
2002-09-27 07:18:16 +00:00
itojun 3ce9d85c2d sort 2002-09-27 07:08:29 +00:00
provos 188b812880 human-readable output via -h flag. match output from Linux and other BSDs.
Partly by Benedikt Meurer <bmeurer@fwdn.de>.  approved by perry. closes
pr 14687 and 18402.
2002-09-27 03:33:33 +00:00
itojun d24389cf67 MDC2 is a patented algorithm; don't ship it in default libcrypto.
MKCRYPTO_MDC2 will build a separate library, libcrypto_mdc2.
2002-09-26 13:05:54 +00:00
wiz e3ff4e979b Ispell. Begin new sentences on a new line. 2002-09-26 01:28:22 +00:00
wiz e65d3f8091 Begin new sentences on new lines. Minor mdoc improvements. 2002-09-26 01:26:53 +00:00
wiz 5bfcb907e0 Ispell. Begin new sentences on a new line. 2002-09-26 01:23:00 +00:00
wiz 11b1026044 Ispell. Begin new sentences on a new line. mdoc fixes. 2002-09-26 01:19:38 +00:00
wiz 95882a7a34 Ispell. Begin new sentences on a new line. 2002-09-26 01:13:41 +00:00
wiz 44f2153f1e Ispell. Begin new sentences on a new line. 2002-09-26 01:09:46 +00:00
christos 836efa3eb4 PR/18408: Chris Demetriou: Kilo is abbreviated using a small k not a CAPITAL K. 2002-09-25 13:50:39 +00:00
itojun 7798fe3a64 disallow users from alter log file entries by using "login foo".
from xs@kittenz.org
2002-09-25 03:45:32 +00:00
wiz 09ee17ab5a Fix an Xr, add a comma and join two short lines. In short, minor changes :) 2002-09-24 15:31:30 +00:00