summaryrefslogtreecommitdiff
path: root/usr.sbin/hoststatectl/parser.c
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2006-12-16 12:47:19 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2006-12-16 12:47:19 +0000
commit1daa8c727ac98eeb3eb88be82ff1e335d2624ae8 (patch)
treee7effe322162671be05f7e289fb8f91f69473361 /usr.sbin/hoststatectl/parser.c
parent5319a398801f23368225691f44bf07b096eb5e86 (diff)
knf, spacing
Diffstat (limited to 'usr.sbin/hoststatectl/parser.c')
-rw-r--r--usr.sbin/hoststatectl/parser.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/hoststatectl/parser.c b/usr.sbin/hoststatectl/parser.c
index a2247a907fc..52ccd7daafd 100644
--- a/usr.sbin/hoststatectl/parser.c
+++ b/usr.sbin/hoststatectl/parser.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parser.c,v 1.1 2006/12/16 11:45:07 reyk Exp $ */
+/* $OpenBSD: parser.c,v 1.2 2006/12/16 12:47:18 reyk Exp $ */
/*
* Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
@@ -72,21 +72,21 @@ static const struct token t_main[] = {
static const struct token t_service[] = {
{NOTOKEN, "", NONE, NULL},
- {KEYWORD, "disable", SERV_DISABLE, t_service_id},
- {KEYWORD, "enable", SERV_ENABLE, t_service_id},
+ {KEYWORD, "disable", SERV_DISABLE, t_service_id},
+ {KEYWORD, "enable", SERV_ENABLE, t_service_id},
{ENDTOKEN, "", NONE, NULL}
};
static const struct token t_table[] = {
{NOTOKEN, "", NONE, NULL},
- {KEYWORD, "disable", TABLE_DISABLE, t_table_id},
+ {KEYWORD, "disable", TABLE_DISABLE, t_table_id},
{KEYWORD, "enable", TABLE_ENABLE, t_table_id},
{ENDTOKEN, "", NONE, NULL}
};
static const struct token t_host[] = {
{NOTOKEN, "", NONE, NULL},
- {KEYWORD, "disable", HOST_DISABLE, t_host_id},
+ {KEYWORD, "disable", HOST_DISABLE, t_host_id},
{KEYWORD, "enable", HOST_ENABLE, t_host_id},
{ENDTOKEN, "", NONE, NULL}
};