Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | use the new variant log macros instead of prepending __func__ and | 2020-10-18 | 1 | -8/+8 | |
| | | | | appending ssh_err(r) manually; ok markus@ | ||||
* | allow sshd_config longer than 256k; ok djm | 2020-06-24 | 1 | -2/+2 | |
| | |||||
* | some __func__ and strerror(errno) here; no functional change | 2020-01-22 | 1 | -7/+7 | |
| | |||||
* | replace cast with call to sshbuf_mutable_ptr(); ok djm@ | 2018-07-09 | 1 | -2/+2 | |
| | |||||
* | sync ssh-keysign, ssh-keygen and some dependencies to the new | 2015-01-15 | 1 | -10/+15 | |
| | | | | buffer/key API; mostly mechanical, ok markus@ | ||||
* | almost entirely get rid of the culture of ".h files that include .h files" | 2006-08-03 | 1 | -2/+4 | |
| | | | | | ok djm, sort of ok stevesk makes the pain stop in one easy step | ||||
* | move #include <string.h> out of includes.h | 2006-07-22 | 1 | -1/+2 | |
| | |||||
* | move #include <unistd.h> out of includes.h | 2006-07-17 | 1 | -1/+4 | |
| | |||||
* | move #include <errno.h> out of includes.h; ok markus@ | 2006-07-11 | 1 | -1/+3 | |
| | |||||
* | replace {GET,PUT}_XXBIT macros with functionally similar functions, | 2006-03-30 | 1 | -4/+4 | |
| | | | | | | silencing a heap of lint warnings. also allows them to use __bounded__ checking which can't be applied to macros; requested by and feedback from deraadt@ | ||||
* | Put $OpenBSD$ tags back (as comments) to replace the RCSID()s that | 2006-03-25 | 1 | -0/+1 | |
| | | | | Theo nuked - our scripts to sync -portable need them in the files | ||||
* | RCSID() can die | 2006-03-19 | 1 | -1/+0 | |
| | |||||
* | Switch atomicio to use a simpler interface; it now returns a size_t | 2005-05-24 | 1 | -9/+6 | |
| | | | | | | | | | | | (containing number of bytes read/written), and indicates error by returning 0. EOF is signalled by errno==EPIPE. Typical use now becomes: if (atomicio(read, ..., len) != len) err(1,"read"); ok deraadt@, cloder@, djm@ | ||||
* | return error on msg send/receive failure (rather than fatal); ok markus@ | 2003-11-17 | 1 | -14/+23 | |
| | |||||
* | deal with typing of write vs read in atomicio | 2003-06-28 | 1 | -3/+3 | |
| | |||||
* | s/msg_send/ssh_msg_send/ to avoid namespace clashes in portable; ok markus@ | 2002-12-19 | 1 | -10/+10 | |
| | |||||
* | %u | 2002-07-01 | 1 | -2/+2 | |
| | |||||
* | printf type pedant | 2002-06-24 | 1 | -3/+3 | |
| | |||||
* | KNF done automatically while reading.... | 2002-06-19 | 1 | -2/+2 | |
| | |||||
* | add /usr/libexec/ssh-keysign: a setuid helper program for hostbased authentication | 2002-05-23 | 1 | -0/+73 | |
in protocol v2 (needs to access the hostkeys). |