summary refs log tree commit diff stats
path: root/src/common/cfgfiles.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-15 16:00:07 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-10-15 16:00:07 +0200
commit13449c282af66183646d758178e6862540f31898 (patch)
tree7ca4fb1ed0b5e71f0c1038761b444e107edaf9df /src/common/cfgfiles.c
parent32eeec02ff0162db1df5e3ae92484b11f4dc34fb (diff)
Reformat the /SET code
Diffstat (limited to 'src/common/cfgfiles.c')
-rw-r--r--src/common/cfgfiles.c36
1 files changed, 33 insertions, 3 deletions
diff --git a/src/common/cfgfiles.c b/src/common/cfgfiles.c
index e8b598fc..f60e889c 100644
--- a/src/common/cfgfiles.c
+++ b/src/common/cfgfiles.c
@@ -1072,17 +1072,25 @@ cmd_set (struct session *sess, char *tbuf, char *word[], char *word_eol[])
 	}
 
 	if ((strchr (var, '*') || strchr (var, '?')) && !*val)
+	{
 		wild = TRUE;
+	}
 
 	if (*val == '=')
+	{
 		val++;
+	}
 
 	do
 	{
 		if (wild)
+		{
 			found = !match (var, vars[i].name);
+		}
 		else
+		{
 			found = g_ascii_strcasecmp (var, vars[i].name);
+		}
 
 		if (found == 0)
 		{
@@ -1094,9 +1102,13 @@ cmd_set (struct session *sess, char *tbuf, char *word[], char *word_eol[])
 				{
 					strncpy ((char *) &prefs + vars[i].offset, val, vars[i].len);
 					((char *) &prefs)[vars[i].offset + vars[i].len - 1] = 0;
+
 					if (!quiet)
+					{
 						PrintTextf (sess, "%s set to: %s\n", var, (char *) &prefs + vars[i].offset);
-				} else
+					}
+				}
+				else
 				{
 					set_showval (sess, &vars[i], tbuf);
 				}
@@ -1108,26 +1120,44 @@ cmd_set (struct session *sess, char *tbuf, char *word[], char *word_eol[])
 					if (vars[i].type == TYPE_BOOL)
 					{
 						if (atoi (val))
+						{
 							*((int *) &prefs + vars[i].offset) = 1;
+						}
 						else
+						{
 							*((int *) &prefs + vars[i].offset) = 0;
+						}
 						if (!g_ascii_strcasecmp (val, "YES") || !g_ascii_strcasecmp (val, "ON"))
+						{
 							*((int *) &prefs + vars[i].offset) = 1;
+						}
 						if (!g_ascii_strcasecmp (val, "NO") || !g_ascii_strcasecmp (val, "OFF"))
+						{
 							*((int *) &prefs + vars[i].offset) = 0;
-					} else
+						}
+					}
+					else
 					{
 						if (or)
+						{
 							*((int *) &prefs + vars[i].offset) |= atoi (val);
+						}
 						else if (off)
+						{
 							*((int *) &prefs + vars[i].offset) &= ~(atoi (val));
+						}
 						else
+						{
 							*((int *) &prefs + vars[i].offset) = atoi (val);
+						}
 					}
 					if (!quiet)
+					{
 						PrintTextf (sess, "%s set to: %d\n", var,
 										*((int *) &prefs + vars[i].offset));
-				} else
+					}
+				}
+				else
 				{
 					set_showval (sess, &vars[i], tbuf);
 				}