diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2009-10-11 00:57:26 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2009-10-11 00:57:26 +0100 |
commit | c5c18c155cfdc3edcbd764633761d33e3c5992a3 (patch) | |
tree | 1473c17473c26af70946f00ed06e247e79850789 /protocols | |
parent | e046390da36e369c94af607fdedfe7b9f99d9e47 (diff) |
Hacked up a B_EV_FLAG_FORCE_REPEAT event handler flag to make libpurple
happy.
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/purple/purple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/purple/purple.c b/protocols/purple/purple.c index 08c14edf..9ef70bd3 100644 --- a/protocols/purple/purple.c +++ b/protocols/purple/purple.c @@ -69,7 +69,7 @@ static guint prplcb_ev_timeout_add( guint interval, GSourceFunc func, gpointer u static guint prplcb_ev_input_add( int fd, PurpleInputCondition cond, PurpleInputFunction func, gpointer udata ) { - return (guint) b_input_add( fd, cond, (b_event_handler) func, udata ); + return (guint) b_input_add( fd, cond | B_EV_FLAG_FORCE_REPEAT, (b_event_handler) func, udata ); } static PurpleEventLoopUiOps glib_eventloops = |