summaryrefslogtreecommitdiff
path: root/libpurple/ciphers
diff options
context:
space:
mode:
authorMark Doliner <mark@kingant.net>2013-01-09 23:52:20 -0800
committerMark Doliner <mark@kingant.net>2013-01-09 23:52:20 -0800
commit993ad800e9581365b3a5572a7b49ae6397404401 (patch)
tree5fe6fc1aee4bc4f5a1627481a5540b8455a205fa /libpurple/ciphers
parent9972debd6eb2633e425127f99997915d9a37d39d (diff)
downloadpidgin-993ad800e9581365b3a5572a7b49ae6397404401.tar.gz
Remove unnecessary GLIB_CHECK_VERSION call.
...now that I've changed configure.ac to require glib 2.20.0
Diffstat (limited to 'libpurple/ciphers')
-rw-r--r--libpurple/ciphers/gchecksum.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libpurple/ciphers/gchecksum.c b/libpurple/ciphers/gchecksum.c
index 572aa2ba86..d75b2aeeb7 100644
--- a/libpurple/ciphers/gchecksum.c
+++ b/libpurple/ciphers/gchecksum.c
@@ -17,13 +17,7 @@ purple_g_checksum_reset(PurpleCipherContext *context, GChecksumType type)
checksum = purple_cipher_context_get_data(context);
g_return_if_fail(checksum != NULL);
-#if GLIB_CHECK_VERSION(2,18,0)
g_checksum_reset(checksum);
-#else
- g_checksum_free(checksum);
- checksum = g_checksum_new(type);
- purple_cipher_context_set_data(context, checksum);
-#endif
}
static void