summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* It is the twenty-first century, we don't need #ifdef ladders anymore.Gravatar Karl Ramm2010-03-17
|
* roleplay accordingly with sin_len and sin6_len values on BSD systemsGravatar Karl Ramm2009-12-18
|
* regenerate configureGravatar Karl Ramm2009-10-12
|
* ss_perror -> com_errGravatar Karl Ramm2009-10-12
| | | | | | As a precursor to loosening the dependency on ss. (Thanks to Ken Raeburn)
* Print only some fields of ZGetDestAddr to dodge sin_lenGravatar Karl Ramm2009-10-12
| | | | | | | | | Print only the fields of ZGetDestAddr we care about checking -- the address family and address. We can't just print the whole structure and selectively examine fields, because we can't easily determine whether sin_len will be present or not. (from Ken Raeburn)
* Print more info for certain test failures.Gravatar Karl Ramm2009-10-12
| | | | (from Ken Raeburn)
* support Darwin/BSD sockaddr structures with _len fieldsGravatar Karl Ramm2009-10-12
| | | | | | | | Initial support for examining and printing sockaddr structures on Darwin and *BSD, where _len fields are present and the _family field is 8 bits. (from Ken Raeburn)
* Add a .gitignore file, as most of us are using git-svn.Gravatar Karl Ramm2009-10-12
| | | | (from Ken Raeburn)
* With xzwrite gone, we don't need libdyn.Gravatar Karl Ramm2009-10-10
|
* Add process size estimation for Mac OS X on x86.Gravatar Karl Ramm2009-10-10
|
* You'd think I'd know better.Gravatar Karl Ramm2009-10-09
|
* simplify error handlingGravatar Karl Ramm2009-10-08
|
* bump version #Gravatar Karl Ramm2009-10-06
|
* New versionless libreadline-dev metapackage. Yay.Gravatar Karl Ramm2009-09-29
|
* Refactor error handling slightly in get_tgtGravatar Karl Ramm2009-08-27
| | | | | (which coincidentally keeps us from reporting the wrong function with an error code)
* get_tgt() should not fail if built krb5-only and it can't find a des keyGravatar Karl Ramm2009-08-27
| | | | Also clean up some indentation and add error logging.
* For now check incoming interrealm stuff with both keyusages because itGravatar Karl Ramm2009-08-27
| | | | turns out that derived-key stuff actually worked if you were using heimdal.
* krb5_init_keyblock is ugly and I'm not sure what it's doing there anywayGravatar Karl Ramm2009-08-22
|
* Fix a casefolding bug. [64-bit]Gravatar Karl Ramm2009-08-22
| | | | | | | | | | | | | | In valid_utf8_p(), uc was improperly typed and never initialized. On 64-bit systems, this means that success is dependent on previous stack contents. If the upper 32 bits are not zero, the null terminator is not caught and the function continues reading past the end of the string until: 1) Invalid UTF-8 is encountered 2) An invalid unicode codepoint is encountered. 3) segfault 1 and 2 are much more likely, but 3 is a danger.
* new config.{guess,sub}Gravatar Karl Ramm2009-08-22
|
* don't tell people to send mail @mit.eduGravatar Karl Ramm2009-08-14
|
* oddly, this works on debianGravatar Karl Ramm2009-08-14
|
* We ain't in alpha no more, buckyGravatar Karl Ramm2009-08-14
|
* when setting location, wait for SERVACKs _and_ SERVNAKSGravatar Karl Ramm2009-08-11
|
* ZCheckSrvAuthentication says "YES", "NO", or "FAILED"Gravatar Karl Ramm2009-08-10
|
* this gets free'd later...Gravatar Karl Ramm2009-08-09
|
* less fragile autoconf heimdal/api difference detection thanks to ↵Gravatar Karl Ramm2009-08-09
| | | | cg2v@ANDREW.CMU.EDU
* it is the TWENTY-FIRST CENTURY, we can STOP USING K&RGravatar Karl Ramm2009-08-09
|
* if __USE_XOPEN_EXTENDED is already defined, there was an annoying message;Gravatar Karl Ramm2009-08-09
| | | | also, we probably shouldn't undefine it
* change the prototype variable name "class" to match the actual function ↵Gravatar Karl Ramm2009-08-09
| | | | "class_name"
* if not HAVE_KRB5_C_DECRYPT, there's no krb5_enc_data type, and oh, look we ↵Gravatar Karl Ramm2009-08-09
| | | | don't use din anyway
* I managed to convince myself that this won't cause (much) in the way ofGravatar Karl Ramm2009-08-08
| | | | | interoperability issues. But this will buy us a little bit more space for authenticators & such.
* Shave the zwrite default formats a touchGravatar Karl Ramm2009-08-08
|
* make the VARIETALS stuff actually workGravatar Karl Ramm2009-08-07
|
* for dh_pycentralGravatar Karl Ramm2009-08-07
|
* It's Release Candidate Time!Gravatar Karl Ramm2009-08-03
|
* Work around a... sign extension edge case?Gravatar Karl Ramm2009-08-03
|
* Slightly more robust guess at what the noauth ZExpandRealm doesGravatar Karl Ramm2009-08-01
|
* Further refactor the library locater, and make the doctests use itGravatar Karl Ramm2009-08-01
|
* More explicitly print the test results, and exit 1 if there was a failureGravatar Karl Ramm2009-08-01
| | | | so that make check will fail.
* actually look search for the shared library, and hopefully also find it onGravatar Karl Ramm2009-08-01
| | | | a mac
* not sense in these being distinctGravatar Karl Ramm2009-08-01
|
* "make check" is too sensitive to various infrastructure issues to be theGravatar Karl Ramm2009-08-01
| | | | default.
* Update for krb5.Gravatar Karl Ramm2009-07-30
|
* update for krb5. (and mention that server.list is always operative now)Gravatar Karl Ramm2009-07-30
|
* Factor out code that extacts a sockaddr_in from a notice (and stop using theGravatar Karl Ramm2009-07-29
| | | | | | | deprecated sender_addr macro.) Actually remove the code from realm.c:real_dispatch because nothing was using the result. Ran nuke-trailing-whitespace on all the files I touched, as usual.
* Refactor ZCheckRealmAuthentication into ZCheckSrvAuthentication.Gravatar Karl Ramm2009-07-27
| | | | (also fiddle around with what krb4 checksums are available in krb5-only land)
* Refactor some gratuitously duplicated code in handle_packetGravatar Karl Ramm2009-07-26
|
* Remove the chock wedging things into DES mode and hopefully redo the ↵Gravatar Karl Ramm2009-07-26
| | | | | | keyusage stuff such that it actually works.
* Cleanup unused variable warning and put in a missing prototypeGravatar Karl Ramm2009-07-26
| | | | (pass -Wall -Werror)