diff options
Diffstat (limited to 'plugins/face')
-rw-r--r-- | plugins/face/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/face/face.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/face/ChangeLog b/plugins/face/ChangeLog index a86f11a977..11d9b0814d 100644 --- a/plugins/face/ChangeLog +++ b/plugins/face/ChangeLog @@ -1,3 +1,10 @@ +2007-09-27 Matthew Barnes <mbarnes@redhat.com> + + ** Fixes part of bug #474000 + + * face.c: + Use GLib's Base64 API instead of Camel's. + 2007-09-14 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #476231 diff --git a/plugins/face/face.c b/plugins/face/face.c index 9e17fecc43..a747c3710a 100644 --- a/plugins/face/face.c +++ b/plugins/face/face.c @@ -98,7 +98,7 @@ void org_gnome_composer_face (EPlugin * ep, EMMenuTargetWidget * t) d (printf ("\n\a Invalid Image Size. Please choose a 48*48 image\n\a")); e_error_run (NULL, "org.gnome.evolution.plugins.face:invalid-image-size", NULL, NULL); } else { - file_contents = camel_base64_encode_simple (file_contents, length); + file_contents = g_base64_encode (file_contents, length); g_file_set_contents (filename, file_contents, -1, &error); } } |