summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Doliner <markdoliner@pidgin.im>2010-11-10 01:22:53 +0000
committerMark Doliner <markdoliner@pidgin.im>2010-11-10 01:22:53 +0000
commit9da976b8746eac6d35621e37fdf52c89f6e29aa5 (patch)
treecff4affa050f50d81cac7f0f6994faf7fbb5488a
parentda59dc1296158e729f7d286d2ba91be032713692 (diff)
downloadpidgin-9da976b8746eac6d35621e37fdf52c89f6e29aa5.tar.gz
Correct typo in comment
-rw-r--r--libpurple/protocols/oscar/oscar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpurple/protocols/oscar/oscar.c b/libpurple/protocols/oscar/oscar.c
index 91252b79db..f2bb3860ea 100644
--- a/libpurple/protocols/oscar/oscar.c
+++ b/libpurple/protocols/oscar/oscar.c
@@ -644,7 +644,7 @@ static void hash_table_get_list_of_keys(gpointer key, gpointer value, gpointer u
*handlers = g_list_prepend(*handlers, key);
}
-#endif /* GLIB < 2.12.0 */
+#endif /* GLIB < 2.14.0 */
void
oscar_login(PurpleAccount *account)
@@ -720,7 +720,7 @@ oscar_login(PurpleAccount *account)
#else
handlers = NULL;
g_hash_table_foreach(od->handlerlist, hash_table_get_list_of_keys, &handlers);
-#endif /* GLIB < 2.12.0 */
+#endif /* GLIB < 2.14.0 */
sorted_handlers = g_list_sort(g_list_copy(handlers), compare_handlers);
for (cur = sorted_handlers; cur; cur = cur->next) {
guint x = GPOINTER_TO_UINT(cur->data);