From: <the...@us...> - 2006-07-06 08:11:13
|
Revision: 16439 Author: thekingant Date: 2006-07-06 01:11:08 -0700 (Thu, 06 Jul 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16439&view=rev Log Message: ----------- Minor odds and ends Modified Paths: -------------- trunk/plugins/ssl/ssl-gnutls.c trunk/src/conversation.c trunk/src/server.c trunk/src/util.c Modified: trunk/plugins/ssl/ssl-gnutls.c =================================================================== --- trunk/plugins/ssl/ssl-gnutls.c 2006-07-06 08:01:36 UTC (rev 16438) +++ trunk/plugins/ssl/ssl-gnutls.c 2006-07-06 08:11:08 UTC (rev 16439) @@ -106,6 +106,11 @@ GaimSslGnutlsData *gnutls_data; static const int cert_type_priority[2] = { GNUTLS_CRT_X509, 0 }; + /* + * TODO: Uh, this needs to somehow check to make sure that gsc is + * still valid before actually doing anything. + */ + if(source < 0) { if(gsc->error_cb != NULL) gsc->error_cb(gsc, GAIM_SSL_CONNECT_FAILED, gsc->connect_cb_data); Modified: trunk/src/conversation.c =================================================================== --- trunk/src/conversation.c 2006-07-06 08:01:36 UTC (rev 16438) +++ trunk/src/conversation.c 2006-07-06 08:11:08 UTC (rev 16439) @@ -57,9 +57,6 @@ gaim_conv_im_update_typing(im); gaim_conv_im_stop_typing_timeout(im); - gaim_signal_emit(gaim_conversations_get_handle(), - "buddy-typing-stopped", c->account, c->name); - return FALSE; } Modified: trunk/src/server.c =================================================================== --- trunk/src/server.c 2006-07-06 08:01:36 UTC (rev 16438) +++ trunk/src/server.c 2006-07-06 08:11:08 UTC (rev 16439) @@ -621,9 +621,6 @@ gaim_signal_emit(gaim_conversations_get_handle(), "buddy-typing-stopped", gc->account, name); } - - gaim_signal_emit(gaim_conversations_get_handle(), - "buddy-typing-stopped", gc->account, name); } struct chat_invite_data { Modified: trunk/src/util.c =================================================================== --- trunk/src/util.c 2006-07-06 08:01:36 UTC (rev 16438) +++ trunk/src/util.c 2006-07-06 08:11:08 UTC (rev 16439) @@ -2521,7 +2521,7 @@ } } else { gaim_debug(GAIM_DEBUG_ERROR, "gaim_mkstemp", - "g_get_tmp_dir() failed!"); + "g_get_tmp_dir() failed!\n"); } return fp; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |