Revision 31ed92ba1b530f050510b4958686e3013ba4176c

evands at pidgin.im evands at pidgin.im
Tue Mar 20 10:37:36 EDT 2007


o   -----------------------------------------------------------------
|   Revision: 31ed92ba1b530f050510b4958686e3013ba4176c
|   Ancestor: 5d82380976ddbe6635550905c1fac7198a445809
|   Author: evands at pidgin.im
|   Date: 2007-03-20T14:37:16
|   Branch: im.pidgin.pidgin
|   
|   Modified files:
|           libpurple/connection.c
|   
|   ChangeLog: 
|   
|   Fixed connection errors; this logical check on 'text' was reversed.
|   
|   ============================================================
|   --- libpurple/connection.c	113fd5fc0c90e7f241cc864f86689aae6d695dab
|   +++ libpurple/connection.c	a4bbab41b684b3c1bb2c36d3984509ae01e518b0
|   @@ -435,7 +435,7 @@ gaim_connection_error(GaimConnection *gc
|    
|    	g_return_if_fail(gc   != NULL);
|    
|   -	if (text != NULL) {
|   +	if (text == NULL) {
|    		g_critical("gaim_connection_error: check `text != NULL' failed");
|    		text = _("Unknown error");
|    	}

To get the patch for this revision, please do this:
mtn log --last 1 --diffs --from 31ed92ba1b530f050510b4958686e3013ba4176c


More information about the Commits mailing list