Mercurial > pidgin.yaz
diff src/protocols/sametime/sametime.c @ 11183:8dca96cbcd64
[gaim-migrate @ 13295]
I changed the cipher API to use guchar instead of guint8
This seems to be what gtk/glib uses for random bits of data
I don't know what got into me
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Wed, 03 Aug 2005 02:57:00 +0000 |
parents | 1081735edc10 |
children | 90be432e8385 |
line wrap: on
line diff
--- a/src/protocols/sametime/sametime.c Wed Aug 03 01:39:41 2005 +0000 +++ b/src/protocols/sametime/sametime.c Wed Aug 03 02:57:00 2005 +0000 @@ -2328,7 +2328,7 @@ } else if(g_str_has_prefix(type, "image")) { /* put images into the image store */ - guint8 *d_dat; + guchar *d_dat; gsize d_len; char *cid; int img; @@ -2353,7 +2353,7 @@ } else if(g_str_has_prefix(type, "text")) { /* concatenate all the text parts together */ - guint8 *data; + guchar *data; char *txt; gsize len;