summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/gss-genr.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Reduce use of <sys/param.h> and transition to <limits.h> throughout.deraadt2015-01-201-1/+2
| | | | ok djm markus
* use calloc for all structure allocations; from markus@djm2013-11-081-2/+2
|
* bye, bye xfree(); ok markus@djm2013-05-171-8/+8
|
* alphabetize includes; reduces diff vs portable and style(9). ok stevesk djmdtucker2009-06-221-2/+2
|
* Pass GSS OID to gss_display_status to provide better information indtucker2007-06-121-4/+4
| | | | error messages. Patch from Simon Wilkinson via bz 1220. ok djm@
* relocate server-only GSSAPI code from libssh to server; bz #1225djm2007-06-121-44/+1
| | | | patch from simon AT sxw.org.uk; ok markus@ dtucker@
* Work around a problem in Heimdal that occurs when KRB5CCNAME file isdtucker2006-08-291-3/+4
| | | | | | missing, by checking whether or not kerberos allocated us a context before attempting to free it. Patch from Simon Wilkinson, tested by biorn@, ok djm@
* GSSAPI error code should be 0 and not -1; from simon@sxw.org.ukdjm2006-08-181-2/+2
|
* constify host argument to match the rest of the GSSAPI functions anddjm2006-08-181-2/+2
| | | | unbreak compilation with -Werror
* bz #1218 - disable SPNEGO as per RFC4462; diff from simon AT sxw.org.ukdjm2006-08-181-2/+31
| | | | ok markus@
* almost entirely get rid of the culture of ".h files that include .h files"deraadt2006-08-031-4/+3
| | | | | ok djm, sort of ok stevesk makes the pain stop in one easy step
* move #include <sys/param.h> out of includes.hstevesk2006-07-261-1/+3
|
* move #include <string.h> out of includes.hstevesk2006-07-221-1/+3
|
* GSSAPI buffers shouldn't be nul-terminated, spotted in bugzilla #1066djm2006-04-031-4/+5
| | | | | by dleonard AT vintela.com. use xasprintf() to simplify code while in there; "looks right" deraadt@
* standardise spacing in $OpenBSD$ tags; requested by deraadt@djm2006-03-251-1/+1
|
* introduce xcalloc() and xasprintf() failure-checked allocations functionsdjm2006-03-251-4/+2
| | | | | | | | | | and use them throughout openssh xcalloc is particularly important because malloc(nmemb * size) is a dangerous idiom (subject to integer overflow) and it is time for it to die feedback and ok deraadt@
* more GSSAPI related leaks detected by Coverity via elad AT netbsd.org;djm2006-03-201-4/+12
| | | | reviewed by simon AT sxw.org.uk; deraadt@ ok
* KNF; ok djm@stevesk2005-10-131-2/+3
|
* remove unneeded #includes; ok markus@stevesk2005-10-131-3/+1
|
* knf says that a 2nd level indent is four (not three or five) spacesdjm2005-07-171-3/+3
|
* unexpand and delete whitespace at EOL; ok markus@djm2003-11-211-5/+5
|
* replace "gssapi" with "gssapi-with-mic"; from Simon Wilkinson; test + ok jakob.markus2003-11-171-1/+26
|
* support GSS API user authentication; patches from Simon Wilkinson,markus2003-08-221-0/+256
stripped down and tested by Jakob and myself.