diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-17 08:16:16 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-17 08:16:16 -0400 |
commit | fcb2f1c3eb72ec2a9c8f85edc394efde2c0178c8 (patch) | |
tree | 36e4b9066a838e2ffb1af13d0e7b1408f216afda /parser.c | |
parent | b7d456868f90f6c6f763d18922be9f8fe6ce15e6 (diff) |
run astyle
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1044,20 +1044,20 @@ static int Go_sys_net_91(gchar **response, int channel, char *loc_string,char *s { nicinfo info; - switch (command_type) { - case query_simple: + switch (command_type) { + case query_simple: if (nicutils_infofordefaultroute(&info)) { *response = g_strdup_printf ("MAC address: %s, IP address: %s", info.mac, info.ip); return OK; } else { - return NetworkNotFound; + return NetworkNotFound; } - break; + break; - default: - return SyntaxError; - break; - } + default: + return SyntaxError; + break; + } } |