summaryrefslogtreecommitdiff
path: root/parser.c
diff options
context:
space:
mode:
authorMichael J. Chudobiak <mjc@avtechpulse.com>2012-08-17 08:16:16 -0400
committerMichael J. Chudobiak <mjc@avtechpulse.com>2012-08-17 08:16:16 -0400
commitfcb2f1c3eb72ec2a9c8f85edc394efde2c0178c8 (patch)
tree36e4b9066a838e2ffb1af13d0e7b1408f216afda /parser.c
parentb7d456868f90f6c6f763d18922be9f8fe6ce15e6 (diff)
run astyle
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/parser.c b/parser.c
index 43c40ac..5ca1810 100644
--- a/parser.c
+++ b/parser.c
@@ -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;
+ }
}