Changeset 654
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r645 r654 1 2008-08-09 Tomasz Sterna <tomek@xiaoka.com> 2 * Checking return value of gsasl_base64_to/from(). Fixes #242 3 * Merged GSSAPI support patch by Jelmer Vernooij 4 * Required GnuSASL version 0.2.27 5 * Removied gsasl DIGEST-MD5 patch 6 7 2008-08-08 Tomasz Sterna <tomek@xiaoka.com> 8 * Fixed XEP-0138 compression feature offer 9 10 2008-08-05 Tomasz Sterna <tomek@xiaoka.com> 11 * Included crypt() function prototype from unistd.h 12 1 13 2008-07-28 Tomasz Sterna <tomek@xiaoka.com> 2 14 * Clear SSL error stack on each new SSL ctx -
trunk/README
r621 r654 12 12 - expat - XML parsing libraries 13 13 http://expat.sourceforge.net/ 14 - GnuSASL (0.2.2 6or higher) - Simple Authentication and Security Layer library14 - GnuSASL (0.2.27 or higher) - Simple Authentication and Security Layer library 15 15 http://www.gnu.org/software/gsasl/ 16 16 (please see contrib/ subdir for an important patch) -
trunk/sx/sasl_gsasl.c
r653 r654 340 340 _sx_debug(ZONE, "gsasl_base64_from failed, no sasl for this conn; (%d): %s", ret, gsasl_strerror(ret)); 341 341 _sx_nad_write(s, _sx_sasl_failure(s, _sasl_err_MALFORMED_REQUEST), 0); 342 return; 342 343 } 343 344 } … … 359 360 _sx_debug(ZONE, "gsasl_base64_from failed, no sasl for this conn; (%d): %s", ret, gsasl_strerror(ret)); 360 361 _sx_nad_write(s, _sx_sasl_failure(s, _sasl_err_MALFORMED_REQUEST), 0); 362 return; 361 363 } 362 364
