Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-11-22 | Bad .IMPSRC. | Marc Espie | |
2001-11-19 | kill more registers | Mike Pechkin | |
millert@ ok | |||
2001-08-27 | Instead of prompting the user whether or not they wish to continue to | Todd C. Miller | |
wait for the lock on password file just tell the user to interrupt with ^C. This simplifies the locking loop a bit. Update man page to this effect. | |||
2001-08-26 | Change the second arg to pw_mkdb() from a boolean flag to a set of | Todd C. Miller | |
bit flags ORed together. Currently the only flags defined are _PASSWORD_SECUREONLY and _PASSWORD_OMITV7 but this is enough to cause pw_mkdb() to run pwd_mkdb with the options we want. With this change we no longer generate the old V7 passwd file when only the extra fields in master.passwd (or the encrypted password) have changed. There are other programs that could probably use the _PASSWORD_OMITV7 flag; they will be converted at a future date. | |||
2001-08-19 | add missing #include <err.h> in non-KRB5 case | Todd C. Miller | |
2001-08-18 | If we modify pw_change we cannot pass pw_mkdb() the secureonly flag. | Todd C. Miller | |
We don't need to rebuild the v7 version of the file in this case but we have no way to communicate that to pw_mkdb since we pass in a boolean instead of a set of bit flags. | |||
2001-08-16 | extra arg to pw_mkdb | Todd C. Miller | |
2001-08-16 | At Theo's request only print 'Please wait' if don't get the lock | Todd C. Miller | |
on the first try. | |||
2001-08-03 | o) We always closes .Bl and .Bd tags; | Mike Pechkin | |
millert@ ok | |||
2001-07-19 | more places that need -lkafs | Theo de Raadt | |
2001-07-07 | quiet some -Wall warnings for login_{l,}chpass | Todd C. Miller | |
2001-07-06 | o We use login.conf for passwd(1) variables now, not passwd.conf | Todd C. Miller | |
o Give detailed instructions on how to find a process holding the ptmp lock | |||
2001-07-04 | Move locking of the passwd file *after* we have gotten a new password | Todd C. Miller | |
from the user. Set real/effective/saved uids to 0 and block all signals so the lock cannot be kept longer than necessary. If we cannot lock, try again every 1/4 second for 2 seconds and then ask the user what they wish to do (keep trying, quit). | |||
2001-06-26 | KerberosV | Hans Insulander | |
2001-06-26 | Support for changing kerberos 5 passwords. | Hans Insulander | |
2001-06-26 | Adapt for our use | Hans Insulander | |
2001-06-26 | Import password changing program from heimdal-0.3f | Hans Insulander | |
2001-06-23 | ok, tmac is now fixed | Theo de Raadt | |
2001-06-23 | join .%A entries; most by bk@rt.fm | Theo de Raadt | |
2001-06-18 | o move passwd.conf variables into login.conf | Todd C. Miller | |
o no longer install passwd.conf (but it is used if it exists and the needed info is not in login.conf) o added passwordtime and minpasswordlen login.conf variables | |||
2001-05-25 | Comment out krb5 stuff, until someone has had a chance to make krb5 support | Hans Insulander | |
work. | |||
2001-01-29 | $OpenBSD$ | Niklas Hallqvist | |
2001-01-10 | handle malloc() failures | Theo de Raadt | |
2000-12-12 | Minor interface changes to allow code reuse in login_chpass(8) and | Todd C. Miller | |
login_lchpass(8) | |||
2000-11-26 | Update for pw_mkdb(3) interface change. All but vipw and userdel can | Todd C. Miller | |
specify a username (and thus avoid rebuilding the while database). | |||
2000-11-24 | Include err.h and util.h | Todd C. Miller | |
2000-11-24 | Include strings.h for strlen() prototype | Todd C. Miller | |
Include errno.h, not sys/errno.h since this is userland | |||
2000-11-09 | Change all option list specifications to ".Bl -tag -width Ds". Most man | Aaron Campbell | |
pages just needed their -width parameter tweaked to "Ds", which provides a nice width of 6 constant characters. For consistency more than anything. | |||
2000-10-17 | - Add a DIAGNOSTICS section explaining "the passwd file is busy". | Aaron Campbell | |
- Some other cleanups. | |||
2000-09-03 | Boring... Add :L modifier to all tweakable variables tests. | Marc Espie | |
Closes PR 1246 | |||
2000-08-01 | talk about password checking | Niels Provos | |
2000-08-01 | integrate password quality checking, disallow all digit passwords motivated | Niels Provos | |
by Solar Designer. External password checking program can be spawned now, number of password trials configurable. work by me and Bob Beck. | |||
2000-06-30 | warnx?/errx? paranoia (use "%s" not a bare string unless it is a | Todd C. Miller | |
constant). These are not security holes but it is worth fixing them anyway both for robustness and so folks looking for examples in the tree are not misled into doing something potentially dangerous. Furthermore, it is a bad idea to assume that pathnames will not include '%' in them and that error routines don't return strings with '%' in them (especially in light of the possibility of locales). | |||
2000-05-19 | Make usage() work as expected. deraadt@ ok | Eric Jackson | |
2000-04-15 | - For consistency, `super-user' -> `superuser' in all cases. | Aaron Campbell | |
- Some punctuation fixes. - Some `id' -> `ID'. | |||
2000-03-28 | no kpasswdd | Theo de Raadt | |
2000-03-10 | Various cleanups and standardization. | Aaron Campbell | |
2000-02-25 | TKT_ROOT has changed from a string to a function in newer KerberosIV | Hans Insulander | |
versions. (Ok deraadt@) | |||
1999-08-16 | inculde com_err.h | Artur Grabowski | |
1999-08-16 | inculude ctype.h for islower() | Artur Grabowski | |
1999-06-05 | - remove trailing white space | Aaron Campbell | |
- remove arguments from .Os macros - remove arguments from .Nm macros, where appropriate - some more Dq/Sq/Ql insanity - still lots to do in the usr.bin tree... :/ | |||
1999-05-23 | getopt(3) returns -1, not EOF | Aaron Campbell | |
1998-09-27 | usr.bin/ man page cleanups, n-s | Aaron Campbell | |
1998-07-13 | excessive paranoia | Theo de Raadt | |
1998-07-12 | fix printing glitch | Theo de Raadt | |
1998-07-05 | newsalt uses 24-bit count, and not 32-bit | Niels Provos | |
1998-07-04 | enable variable number of rounds for extended crypt, this is the crypt | Niels Provos | |
variant used by BSDI, reminded of this fact by Solar Designer. | |||
1998-03-09 | drop root-privilegies when changing kerberos password. | Artur Grabowski | |
This allows non-root to change kerberos passwords. | |||
1998-03-09 | Fix YP/localhost code which Art broke very badly | Theo de Raadt | |
1998-02-25 | nicer copyright. | Artur Grabowski | |