diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-03-01 07:26:34 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-03-01 07:26:34 +0800 |
commit | 20143e0762f927d23f57d72928761e1f599bbad2 (patch) | |
tree | 42121834e053e78160539ec5483f64ed81b6e597 /camel/camel-sasl-anonymous.c | |
parent | eb3167206c76ea6014be8bb73a63ee512f35aa7f (diff) | |
download | gsoc2013-evolution-20143e0762f927d23f57d72928761e1f599bbad2.tar gsoc2013-evolution-20143e0762f927d23f57d72928761e1f599bbad2.tar.gz gsoc2013-evolution-20143e0762f927d23f57d72928761e1f599bbad2.tar.bz2 gsoc2013-evolution-20143e0762f927d23f57d72928761e1f599bbad2.tar.lz gsoc2013-evolution-20143e0762f927d23f57d72928761e1f599bbad2.tar.xz gsoc2013-evolution-20143e0762f927d23f57d72928761e1f599bbad2.tar.zst gsoc2013-evolution-20143e0762f927d23f57d72928761e1f599bbad2.zip |
oops, not empty string - need to base64 encode it, which is just "="
svn path=/trunk/; revision=8434
Diffstat (limited to 'camel/camel-sasl-anonymous.c')
-rw-r--r-- | camel/camel-sasl-anonymous.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-sasl-anonymous.c b/camel/camel-sasl-anonymous.c index 576d730157..0429fa8a94 100644 --- a/camel/camel-sasl-anonymous.c +++ b/camel/camel-sasl-anonymous.c @@ -138,7 +138,7 @@ anon_challenge (CamelSasl *sasl, const char *token, CamelException *ex) buf = base64_encode_simple (sasl_anon->trace_info, strlen (sasl_anon->trace_info)); break; case CAMEL_SASL_ANON_TRACE_EMPTY: - buf = g_strdup (""); + buf = g_strdup ("="); break; default: camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_CANT_AUTHENTICATE, |