Changeset 654

Show
Ignore:
Timestamp:
09/08/08 18:42:41 (3 months ago)
Author:
smoku
Message:

Finished gsasl_base64_to/from() fix.

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r645 r654  
     12008-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 
     72008-08-08 Tomasz Sterna <tomek@xiaoka.com> 
     8        * Fixed XEP-0138 compression feature offer 
     9 
     102008-08-05 Tomasz Sterna <tomek@xiaoka.com> 
     11        * Included crypt() function prototype from unistd.h 
     12 
    1132008-07-28 Tomasz Sterna <tomek@xiaoka.com> 
    214        * Clear SSL error stack on each new SSL ctx 
  • trunk/README

    r621 r654  
    1212 - expat - XML parsing libraries 
    1313     http://expat.sourceforge.net/ 
    14  - GnuSASL (0.2.26 or higher) - Simple Authentication and Security Layer library 
     14 - GnuSASL (0.2.27 or higher) - Simple Authentication and Security Layer library 
    1515     http://www.gnu.org/software/gsasl/ 
    1616     (please see contrib/ subdir for an important patch) 
  • trunk/sx/sasl_gsasl.c

    r653 r654  
    340340                _sx_debug(ZONE, "gsasl_base64_from failed, no sasl for this conn; (%d): %s", ret, gsasl_strerror(ret)); 
    341341                _sx_nad_write(s, _sx_sasl_failure(s, _sasl_err_MALFORMED_REQUEST), 0); 
     342                                return; 
    342343            } 
    343344        } 
     
    359360            _sx_debug(ZONE, "gsasl_base64_from failed, no sasl for this conn; (%d): %s", ret, gsasl_strerror(ret)); 
    360361            _sx_nad_write(s, _sx_sasl_failure(s, _sasl_err_MALFORMED_REQUEST), 0); 
     362            return; 
    361363        } 
    362364