aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/msn/sb.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-02-12 20:20:49 +1300
committerJelmer Vernooij <jelmer@samba.org>2006-02-12 20:20:49 +1300
commitec3e4116687f5e990e6d24e2c79e629665ac5e7e (patch)
treeb99eab8a9fcab6125bc37914c10ebcf7a514df7f /protocols/msn/sb.c
parent9fae35c9cf2d5a319623946705e5d7179ea5c338 (diff)
parent1d2e3c2ee2fb4c12ad25832b93ae9513d042717a (diff)
Merge Wilmer
Diffstat (limited to 'protocols/msn/sb.c')
-rw-r--r--protocols/msn/sb.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/protocols/msn/sb.c b/protocols/msn/sb.c
index 9e7ef841..deaceba1 100644
--- a/protocols/msn/sb.c
+++ b/protocols/msn/sb.c
@@ -212,13 +212,16 @@ void msn_sb_destroy( struct msn_switchboard *sb )
for( l = sb->msgq; l; l = l->next )
{
m = l->data;
+
g_free( m->who );
g_free( m->text );
g_free( m );
}
g_slist_free( sb->msgq );
- serv_got_crap( gc, "Warning: Closing down MSN switchboard connection with unsent message(s), you'll have to resend them." );
+ serv_got_crap( gc, "Warning: Closing down MSN switchboard connection with "
+ "unsent message to %s, you'll have to resend it.",
+ m->who ? m->who : "(unknown)" );
}
if( sb->chat )