diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-09-19 02:10:58 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-09-19 02:10:58 +0800 |
commit | e0068343b1d29bb31f08bbe2900306dd1c180d1b (patch) | |
tree | b3fe61081afc4e8347b52bc8a6b311b152fc9888 /camel/camel-sasl.c | |
parent | df21ede0c7bb0cf36ff095400e38d46950a030a5 (diff) | |
download | gsoc2013-evolution-e0068343b1d29bb31f08bbe2900306dd1c180d1b.tar.gz gsoc2013-evolution-e0068343b1d29bb31f08bbe2900306dd1c180d1b.tar.zst gsoc2013-evolution-e0068343b1d29bb31f08bbe2900306dd1c180d1b.zip |
namespaced the encoding/decoding routines.
2003-09-18 Jeffrey Stedfast <fejj@ximian.com>
* camel-mime-utils.[c,h]: namespaced the encoding/decoding
routines.
* camel-mime-filter-basic.c: updated for namespace changes to the
encoding/decoding routines in camel-mime-utils.c
* camel-multipart.c: updated for namespace changes to the
encoding/decoding routines in camel-mime-utils.c
* camel-sasl-digest-md5.c: updated for namespace changes to the
encoding/decoding routines in camel-mime-utils.c
* camel-sasl.c: updated for namespace changes to the
encoding/decoding routines in camel-mime-utils.c
* camel-vee-folder.c: updated for namespace changes to the
encoding/decoding routines in camel-mime-utils.c
* providers/imap/camel-imap-search.c: updated for namespace
changes to the encoding/decoding routines in camel-mime-utils.c
* providers/pop3/camel-pop3-folder.c: updated for namespace
changes to the encoding/decoding routines in camel-mime-utils.c
svn path=/trunk/; revision=22615
Diffstat (limited to 'camel/camel-sasl.c')
-rw-r--r-- | camel/camel-sasl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-sasl.c b/camel/camel-sasl.c index ec070215c9..7f435612dd 100644 --- a/camel/camel-sasl.c +++ b/camel/camel-sasl.c @@ -137,7 +137,7 @@ camel_sasl_challenge_base64 (CamelSasl *sasl, const char *token, CamelException token_binary = g_byte_array_new (); len = strlen (token); g_byte_array_append (token_binary, token, len); - token_binary->len = base64_decode_simple (token_binary->data, len); + token_binary->len = camel_base64_decode_simple (token_binary->data, len); } else token_binary = NULL; @@ -147,7 +147,7 @@ camel_sasl_challenge_base64 (CamelSasl *sasl, const char *token, CamelException if (!ret_binary) return NULL; - ret = base64_encode_simple (ret_binary->data, ret_binary->len); + ret = camel_base64_encode_simple (ret_binary->data, ret_binary->len); g_byte_array_free (ret_binary, TRUE); return ret; |