comparison pidgin/plugins/cap/cap.c @ 23376:85fc34efe733

Fix occurred to be spelled correctly. Thanks to bruce89 for noticing. Fixes #6096.
author Daniel Atallah <daniel.atallah@gmail.com>
date Mon, 16 Jun 2008 15:19:11 +0000
parents caa64d8580f4
children b162300ab1e7
comparison
equal deleted inserted replaced
23375:53db7393829e 23376:85fc34efe733
331 stats->last_message_status_id = NULL; 331 stats->last_message_status_id = NULL;
332 } 332 }
333 333
334 static gboolean max_message_difference_cb(gpointer data) { 334 static gboolean max_message_difference_cb(gpointer data) {
335 CapStatistics *stats = data; 335 CapStatistics *stats = data;
336 purple_debug_info("cap", "Max Message Difference timeout occured\n"); 336 purple_debug_info("cap", "Max Message Difference timeout occurred\n");
337 insert_cap_failure(stats); 337 insert_cap_failure(stats);
338 stats->timeout_source_id = 0; 338 stats->timeout_source_id = 0;
339 return FALSE; 339 return FALSE;
340 } 340 }
341 341