Mercurial > pidgin
comparison libpurple/protocols/mxit/login.c @ 31292:754459ff7b23
* removed unneeded variable passing.
author | pieter.loubser@mxit.com |
---|---|
date | Thu, 13 Jan 2011 06:56:41 +0000 |
parents | 69760676c50c |
children | 06371b61a840 |
comparison
equal
deleted
inserted
replaced
31291:b9dc45392feb | 31292:754459ff7b23 |
---|---|
139 if ( session->http ) { | 139 if ( session->http ) { |
140 session->http_timer_id = purple_timeout_add_seconds( 2, mxit_manage_polling, session ); | 140 session->http_timer_id = purple_timeout_add_seconds( 2, mxit_manage_polling, session ); |
141 } | 141 } |
142 | 142 |
143 /* This timer might already exist if we're registering a new account */ | 143 /* This timer might already exist if we're registering a new account */ |
144 if ( session->q_timer == 0 ) | 144 if ( session->q_timer == 0 ) { |
145 /* start the tx queue manager timer */ | 145 /* start the tx queue manager timer */ |
146 session->q_timer = purple_timeout_add_seconds( 2, mxit_manage_queue, session ); | 146 session->q_timer = purple_timeout_add_seconds( 2, mxit_manage_queue, session ); |
147 } | |
147 } | 148 } |
148 | 149 |
149 | 150 |
150 /*------------------------------------------------------------------------ | 151 /*------------------------------------------------------------------------ |
151 * Callback invoked once the connection has been established to the MXit server, | 152 * Callback invoked once the connection has been established to the MXit server, |