diff libpurple/protocols/msn/sync.c @ 20399:6f986caeab59

merge of 'b4911943cba6f29cf0694dfd563cac17612236dc' and 'c28931a50bfa21e0be81777bcd91fdeab9116d77'
author Richard Laager <rlaager@wiktel.com>
date Sun, 15 Apr 2007 04:29:56 +0000
parents 60bc06498746 4a099e4d0d09
children
line wrap: on
line diff
--- a/libpurple/protocols/msn/sync.c	Sun Apr 15 04:12:27 2007 +0000
+++ b/libpurple/protocols/msn/sync.c	Sun Apr 15 04:29:56 2007 +0000
@@ -35,7 +35,8 @@
 
 	list_name = cmd->params[0];
 
-	if (!g_ascii_strcasecmp(list_name, "AL")){
+	if (!g_ascii_strcasecmp(list_name, "AL"))
+	{
 		/*
 		 * If the current setting is AL, messages from users who
 		 * are not in BL will be delivered.
@@ -43,7 +44,9 @@
 		 * In other words, deny some.
 		 */
 		gc->account->perm_deny = PURPLE_PRIVACY_DENY_USERS;
-	}else{
+	}
+	else
+	{
 		/* If the current setting is BL, only messages from people
 		 * who are in the AL will be delivered.
 		 *
@@ -86,7 +89,8 @@
 lsg_cmd(MsnCmdProc *cmdproc, MsnCommand *cmd)
 {
 	MsnSession *session = cmdproc->session;
-	const char *name, *group_id;
+	const char *name;
+	const char *group_id;
 
 	group_id = cmd->params[0];
 	name = purple_url_decode(cmd->params[1]);