summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh-agent.c
AgeCommit message (Expand)Author
2006-10-06sys/resource.h needs sys/time.h; prompted by brad@Damien Miller
2006-08-04spacesKevin Steves
2006-08-03almost entirely get rid of the culture of ".h files that include .h files"Theo de Raadt
2006-08-01move #include <stdio.h> out of includes.hKevin Steves
2006-07-26move #include <stdlib.h> out of includes.hKevin Steves
2006-07-26move #include <sys/param.h> out of includes.hKevin Steves
2006-07-25move #include <sys/time.h> out of includes.hKevin Steves
2006-07-22move #include <string.h> out of includes.hKevin Steves
2006-07-22move #include <time.h> out of includes.hKevin Steves
2006-07-17move #include <unistd.h> out of includes.hKevin Steves
2006-07-11move #include <errno.h> out of includes.h; ok markus@Kevin Steves
2006-07-09move #include <fcntl.h> out of includes.hKevin Steves
2006-07-08move #include <sys/socket.h> out of includes.hKevin Steves
2006-06-13revert; i am on drugs. spotted by alexander AT beard.seDamien Miller
2006-06-13always use a format string, even when printing a constantDamien Miller
2006-05-17fix leak; coverity via Kylene Jo HallMarkus Friedl
2006-03-30replace {GET,PUT}_XXBIT macros with functionally similar functions,Damien Miller
2006-03-28use strtonum() to parse the pid from the file, and range check itTheo de Raadt
2006-03-25mark two more signal handlers ARGSUSEDTheo de Raadt
2006-03-25Put $OpenBSD$ tags back (as comments) to replace the RCSID()s thatDamien Miller
2006-03-25change OpenSSH's xrealloc() function from being xrealloc(p, new_size) toDamien Miller
2006-03-25introduce xcalloc() and xasprintf() failure-checked allocations functionsDamien Miller
2006-03-20annoying spacing fixes getting in the way of real diffsTheo de Raadt
2006-03-19RCSID() can dieTheo de Raadt
2006-02-20move #include <signal.h> out of includes.h; ok markus@Kevin Steves
2006-02-20move #include <sys/un.h> out of includes.h; ok djm@Kevin Steves
2006-02-08move #include <sys/resource.h> out of includes.h; ok markus@Kevin Steves
2006-02-08move #include <paths.h> out of includes.h; ok markus@Kevin Steves
2006-02-07move #include <sys/queue.h> out of includes.h; ok markus@Kevin Steves
2005-10-30no need to escape single quotes in comments, no binary changeDamien Miller
2005-09-13ensure that stdio fds are attached; ok deraadt@Damien Miller
2004-10-29factor out common permission-asking code to separate function; ok markus@Damien Miller
2004-10-07don't unlink agent socket when bind() fails, spotted by rich AT rich-paul.netDamien Miller
2004-08-11some signed/unsigned int comparison cleanups; markus@ okAnil Madhavapeddy
2004-06-14set_nonblock() instead of fnctl(...,O_NONBLOCK); "looks sane" deraadt@Damien Miller
2004-05-08kill a tiny header; ok deraadt@Damien Miller
2003-12-02use SSH_LISTEN_BACKLOG (=128) in listen(2).Markus Friedl
2003-11-21unexpand and delete whitespace at EOL; ok markus@Damien Miller
2003-10-1410X for mkdtemp; djm@Markus Friedl
2003-09-23replace fatal_cleanup() and linked list of fatal callbacks with staticMarkus Friedl
2003-09-19provide a ssh-agent specific fatal() function; ok deraadtMarkus Friedl
2003-09-18more buffer allocation fixes; from Solar Designer; CAN-2003-0682; ok millert@Markus Friedl
2003-06-12add sc_get_key_label; larsch at trustcenter.de; bugzilla#591Markus Friedl
2003-06-11make agent constraints (lifetime, confirm) work with smartcard keys; ok markus@Damien Miller
2003-04-08rename log() into logit() to avoid name conflict. markus ok, from netbsdJun-ichiro itojun Hagino
2003-03-13ssh-agent is similar to ssh-keysign (allows other processes to useMarkus Friedl
2003-01-23ssh-add -c, prompt user for confirmation (using ssh-askpass) whenMarkus Friedl
2003-01-21Add a -t life option to ssh-agent that set the default lifetime.Marco S Hyman
2002-10-01allow root to access the agent, since there is no protection from root.Markus Friedl
2002-09-12%u for uid print; ok markus@Kevin Steves