summaryrefslogtreecommitdiff
path: root/lib/command.c
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2017-08-30 11:23:01 -0400
committerQuentin Young <qlyoung@cumulusnetworks.com>2017-08-30 11:27:11 -0400
commit60466a63f2a3c1da8c99721ec018c8b73610b548 (patch)
tree62153f2941a8ba88c0ffd2070ad6749d7730a34d /lib/command.c
parentcc1edd39297bd763e0e1a942e15881a3ac99453a (diff)
*: fix style
Fixes style nits introduced by recent pull requests. Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/command.c')
-rw-r--r--lib/command.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/command.c b/lib/command.c
index 24095de4f0..a303781370 100644
--- a/lib/command.c
+++ b/lib/command.c
@@ -1770,11 +1770,11 @@ int cmd_domainname_set(const char *domainname)
}
/* Hostname configuration */
-DEFUN (config_domainname,
- domainname_cmd,
- "domainname WORD",
- "Set system's domain name\n"
- "This system's domain name\n")
+DEFUN(config_domainname,
+ domainname_cmd,
+ "domainname WORD",
+ "Set system's domain name\n"
+ "This system's domain name\n")
{
struct cmd_token *word = argv[1];
@@ -1786,12 +1786,12 @@ DEFUN (config_domainname,
return cmd_domainname_set(word->arg);
}
-DEFUN (config_no_domainname,
- no_domainname_cmd,
- "no domainname [DOMAINNAME]",
- NO_STR
- "Reset system's domain name\n"
- "domain name of this router\n")
+DEFUN(config_no_domainname,
+ no_domainname_cmd,
+ "no domainname [DOMAINNAME]",
+ NO_STR
+ "Reset system's domain name\n"
+ "domain name of this router\n")
{
return cmd_domainname_set(NULL);
}