Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-02 | oops, to64() is shared. | Theo de Raadt | |
2006-04-02 | avoid lvalue cast by making local function be unsigned to begin with | Theo de Raadt | |
2006-03-30 | minimal lint happiness, round 1 | Theo de Raadt | |
2006-01-22 | - drop privs before running krb5 code | Bjorn Sandell | |
- avoid calling krb5_get_init_creds_password(3) with principal == NULL - try to change the kerberos password if there is a ticket file help from millert@, ok beck@ | |||
2005-12-18 | Indicate that the flags are exclusive, mention realm in the description | Bjorn Sandell | |
for K and remove an error case for kerberos that doesn't apply nowdays. with jmc@ | |||
2005-12-12 | sync usage(); | Jason McIntyre | |
from david leonard (pr #4939); | |||
2005-12-12 | - simplify synopsis | Jason McIntyre | |
- remove some .Bk/.Ek clutter - sort options list | |||
2005-09-28 | pull in protos from rpcsvc/ypclnt.h; issue noted by leonardo@iken.com.br | Theo de Raadt | |
2005-05-01 | spacing | Theo de Raadt | |
2005-05-01 | knf | Theo de Raadt | |
2005-05-01 | _yp_check() is a non-standard API. it leaves the domain bound, and the | Theo de Raadt | |
fd use for that too. We are only using it to check if YP is alive, so, unbind YP right after... this removes the reserved port socket fd in the child.. | |||
2005-05-01 | run password strength checking regexes as user; ok deraadt@ | Damien Miller | |
2005-03-07 | simplify macro calls; | Jason McIntyre | |
2005-03-04 | make :passwordtries=0:\ in login.conf work. | Moritz Jodeit | |
from Ross Richardson. closes PR 4133. ok henning@ millert@ | |||
2004-12-20 | o some missing free()'s in error paths | Moritz Jodeit | |
o use FD_CLOEXEC instead of 1 o fix a crash when the round number of localcipher in the default section in login.conf was ommitted. noted by mpech@ ok mpech@, otto@, millert@, henning@ | |||
2004-11-02 | Do not modify ro mem and plug a mem leak. Happens when no cipher | Otto Moerbeek | |
spec is found in login.conf. Found by Jerome Loyet. ok henning@ hshoexer@ and millert@ on an earlier version. | |||
2004-10-12 | Actually, /etc/passwd is 6th Edition-style, not 7th. The only real | Todd C. Miller | |
diff between /etc/passwd in 6th and 7th was the crypt() algorithm used and we no longer put encrypted passwords in /etc/passwd. From Matthew Gregan; OK otto@ | |||
2004-09-18 | ARGSUSED signal handler | Theo de Raadt | |
2004-09-18 | knf | Theo de Raadt | |
2004-07-24 | Print a newline before the message in kbintr. Otherwise the message | Todd C. Miller | |
ends up on the same line as the prompt. | |||
2004-07-15 | Minor simplification. Pass values in to login_getcapstr for "default" and | Todd C. Miller | |
"error". No longer need check for NULL and set a default value manually. | |||
2004-07-13 | Simplify some things now that we only have login.conf to worry about | Todd C. Miller | |
and fix two bugs introduced in the last commit (a duplicate free and reversed logic for the default cipher types). | |||
2004-07-13 | passwd.conf has been deprecated since login.conf was imported. | Todd C. Miller | |
Today it finally dies. Based on a diff from Gabriel Kihlman. | |||
2004-04-20 | Adapt to new pw_copy() API, closes PR 3698. | Todd C. Miller | |
2004-03-14 | use pid_t for fork return. started by Joris Vink | Ted Unangst | |
2004-03-12 | Remove pw_abort() added in last commit and use the local verson of | Todd C. Miller | |
pw_error() instead. OK deraadt@ otto@ | |||
2004-03-10 | Check getpass() return value for NULL. Closes Pr 3706. | Todd C. Miller | |
With help and OK from otto@. | |||
2004-02-20 | Make passwd understand master.passwd.byname so it can work in a secure | Mats O Jansson | |
environment. Patch from llx at hitech dot ch, modified by me. -moj ok henning@ | |||
2003-08-04 | No longer needed. bye bye. | Hans Insulander | |
ok deraadt@ millert@ henning@ | |||
2003-08-04 | Remove Kerberos 4 stuff. | Hans Insulander | |
ok deraadt@ millert@ henning@ | |||
2003-07-25 | remove some obsolete kerberosIV references; | Jason McIntyre | |
ok hin@ | |||
2003-07-15 | stop using libcom_err, it is built into krb5 | Theo de Raadt | |
2003-07-10 | add missing includes | David Krause | |
ok deraadt@ tedu@ | |||
2003-07-02 | protos | Theo de Raadt | |
2003-06-20 | a cleaning recommended by lint | Theo de Raadt | |
2003-06-10 | - section reorder | Jason McIntyre | |
- COMPATIBILITY merge - macro cleanup - kill whitespace at EOL - new sentence, new line ssh pages ok markus@ | |||
2003-06-03 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-05-14 | Remove krb4 support. | Magnus Holmberg | |
2003-04-28 | stdlib.h | Theo de Raadt | |
2003-04-05 | strlcpy; ok matthieu henning miod | Theo de Raadt | |
2003-03-30 | Simpler and consistent error messages when the user enters an empty | Todd C. Miller | |
password or hits ^C. OK deraadt@ and mpech@ | |||
2003-01-06 | typo; jmc@prioris.mini.pw.edu.pl | Theo de Raadt | |
2002-11-21 | typo in error message; Tor Houghton | Henning Brauer | |
2002-06-28 | various cleanups; ok millert | Theo de Raadt | |
2002-06-12 | a real pid_t cleanup. | Mike Pechkin | |
espie@ ok for make/, deraadt@ one extra eye, millert@ ok | |||
2002-06-04 | spelling; raj@cerias.purdue.edu | Theo de Raadt | |
2002-05-27 | support ":" prefix as group name, as username can contain ".". | Jun-ichiro itojun Hagino | |
(still support "." as welll). passwd.conf support will go away in a couple of months anyways... ok by millert | |||
2002-05-16 | - mimic pw_error() behavior from libutil when name is NULL. | Federico G. Schwindt | |
- while i'm here some style, as well as spaces/tabs removal. deraadt@ ok | |||
2002-05-10 | Fixups for -Wall from panda@omatis.com in system/2634. | Hugh Graham | |
Checked by deraadt. | |||
2002-05-08 | correct linkage | Theo de Raadt | |