comparison src/server.c @ 9741:b10d4c6ac7eb

[gaim-migrate @ 10606] (20:26:58) KingAnt: LSchiere: Can you revert it and I'll post some suggestions to the patch in the tracker? committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Thu, 12 Aug 2004 00:26:28 +0000
parents 2bb5e2cd64bd
children 60705fd4f411
comparison
equal deleted inserted replaced
9740:2bb5e2cd64bd 9741:b10d4c6ac7eb
38 #include "gtkdialogs.h" 38 #include "gtkdialogs.h"
39 #include "gaim.h" 39 #include "gaim.h"
40 #include "gtkimhtml.h" 40 #include "gtkimhtml.h"
41 #include "gtkutils.h" 41 #include "gtkutils.h"
42 42
43 extern void schedule_blist_save(void);
44
45 #define SECS_BEFORE_RESENDING_AUTORESPONSE 600 43 #define SECS_BEFORE_RESENDING_AUTORESPONSE 600
46 #define SEX_BEFORE_RESENDING_AUTORESPONSE "Only after you're married" 44 #define SEX_BEFORE_RESENDING_AUTORESPONSE "Only after you're married"
47 45
48 static void add_idle_buddy(GaimBuddy *buddy); 46 static void add_idle_buddy(GaimBuddy *buddy);
49 static void remove_idle_buddy(GaimBuddy *buddy); 47 static void remove_idle_buddy(GaimBuddy *buddy);
656 * in the prefs. In either case you should probably be resetting and 654 * in the prefs. In either case you should probably be resetting and
657 * resending the permit/deny info when you get this. 655 * resending the permit/deny info when you get this.
658 */ 656 */
659 if (prpl_info && g_list_find(gaim_connections_get_all(), g) && prpl_info->set_permit_deny) 657 if (prpl_info && g_list_find(gaim_connections_get_all(), g) && prpl_info->set_permit_deny)
660 prpl_info->set_permit_deny(g); 658 prpl_info->set_permit_deny(g);
661
662 schedule_blist_save();
663 } 659 }
664 660
665 661
666 void serv_set_idle(GaimConnection *g, int time) 662 void serv_set_idle(GaimConnection *g, int time)
667 { 663 {