diff options
| author | unknown <pesco@khjk.org> | 2011-10-03 16:56:58 +0200 | 
|---|---|---|
| committer | unknown <pesco@khjk.org> | 2011-10-03 16:56:58 +0200 | 
| commit | e67e513a16f3e545fd71eb176aac83d41a1dc271 (patch) | |
| tree | 683d2e0eee6cba46226442762ac55f793259fb6c /protocols | |
| parent | 3231485f983ea5bffe425205abfb059ee62b0168 (diff) | |
rename irc_usermsg to irc_rootmsg.
add new irc_usermsg, irc_usernotice.
deliver user-specific messages from libotr as notices to that user.
Diffstat (limited to 'protocols')
| -rw-r--r-- | protocols/nogaim.c | 4 | ||||
| -rw-r--r-- | protocols/purple/purple.c | 2 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/protocols/nogaim.c b/protocols/nogaim.c index 8fb85ea7..a44679ce 100644 --- a/protocols/nogaim.c +++ b/protocols/nogaim.c @@ -215,9 +215,9 @@ static void serv_got_crap( struct im_connection *ic, char *format, ... )  	/* If we found one, include the screenname in the message. */  	if( a )  		/* FIXME(wilmer): ui_log callback or so */ -		irc_usermsg( ic->bee->ui_data, "%s(%s) - %s", ic->acc->prpl->name, ic->acc->user, text ); +		irc_rootmsg( ic->bee->ui_data, "%s(%s) - %s", ic->acc->prpl->name, ic->acc->user, text );  	else -		irc_usermsg( ic->bee->ui_data, "%s - %s", ic->acc->prpl->name, text ); +		irc_rootmsg( ic->bee->ui_data, "%s - %s", ic->acc->prpl->name, text );  	g_free( text );  } diff --git a/protocols/purple/purple.c b/protocols/purple/purple.c index 55678f92..fe0fc35f 100644 --- a/protocols/purple/purple.c +++ b/protocols/purple/purple.c @@ -180,7 +180,7 @@ static void purple_init( account_t *acc )  		default:  			/** No way to talk to the user right now, invent one when  			this becomes important. -			irc_usermsg( acc->irc, "Setting with unknown type: %s (%d) Expect stuff to break..\n", +			irc_rootmsg( acc->irc, "Setting with unknown type: %s (%d) Expect stuff to break..\n",  			             name, purple_account_option_get_type( o ) );  			*/  			name = NULL; | 
