Mercurial > pidgin.yaz
changeset 31672:42147e198008
forgot to mark the purple_g_checksum_* api as static again
author | Gary Kramlich <grim@reaperworld.com> |
---|---|
date | Thu, 17 Feb 2011 05:02:31 +0000 |
parents | 1e9425e70a94 |
children | 45f318d865ac |
files | libpurple/ciphers/gchecksum.c |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/ciphers/gchecksum.c Thu Feb 17 00:43:09 2011 +0000 +++ b/libpurple/ciphers/gchecksum.c Thu Feb 17 05:02:31 2011 +0000 @@ -2,7 +2,7 @@ #if GLIB_CHECK_VERSION(2,16,0) -void +static void purple_g_checksum_init(PurpleCipherContext *context, GChecksumType type) { GChecksum *checksum; @@ -11,7 +11,7 @@ purple_cipher_context_set_data(context, checksum); } -void +static void purple_g_checksum_reset(PurpleCipherContext *context, GChecksumType type) { GChecksum *checksum; @@ -28,7 +28,7 @@ #endif } -void +static void purple_g_checksum_uninit(PurpleCipherContext *context) { GChecksum *checksum; @@ -39,7 +39,7 @@ g_checksum_free(checksum); } -void +static void purple_g_checksum_append(PurpleCipherContext *context, const guchar *data, gsize len) { @@ -58,7 +58,7 @@ g_checksum_update(checksum, data, len); } -gboolean +static gboolean purple_g_checksum_digest(PurpleCipherContext *context, GChecksumType type, gsize len, guchar *digest, gsize *out_len) {