diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2005-04-13 18:28:46 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2005-04-13 18:28:46 +0000 |
commit | b747f0f610a8a2b505ae9fd9b77514d9be773060 (patch) | |
tree | 31c3b71a0d0cbdc59844ffddf670be7bdea4c151 | |
parent | 3ad3520ef09cf4ae3726258c894b447aa3a6bbab (diff) |
whitespace
-rw-r--r-- | usr.sbin/hostapd/parse.y | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/usr.sbin/hostapd/parse.y b/usr.sbin/hostapd/parse.y index 5a420f86ee1..2fda57513aa 100644 --- a/usr.sbin/hostapd/parse.y +++ b/usr.sbin/hostapd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.1 2005/04/13 18:12:23 reyk Exp $ */ +/* $OpenBSD: parse.y,v 1.2 2005/04/13 18:28:45 henning Exp $ */ /* * Copyright (c) 2004, 2005 Reyk Floeter <reyk@vantronix.net> @@ -85,11 +85,11 @@ typedef struct { %} -%token MODE INTERFACE IAPP HOSTAP MULTICAST BROADCAST SET -%token ERROR -%token <v.string> STRING -%token <v.val> VALUE -%type <v.string> string +%token MODE INTERFACE IAPP HOSTAP MULTICAST BROADCAST SET +%token ERROR +%token <v.string> STRING +%token <v.val> VALUE +%type <v.string> string %% @@ -97,12 +97,12 @@ typedef struct { * Configuration grammar */ -grammar : /* empty */ +grammar : /* empty */ | grammar '\n' - | grammar option '\n' + | grammar option '\n' | grammar varset '\n' | grammar error '\n' { errors++; } - ; + ; option : SET HOSTAP INTERFACE STRING { @@ -110,14 +110,14 @@ option : SET HOSTAP INTERFACE STRING sizeof(hostapd_cfg.c_apme_iface)); hostapd_cfg.c_flags |= HOSTAPD_CFG_F_APME; - + hostapd_log(HOSTAPD_LOG_DEBUG, "parse %s: Host AP interface %s\n", hostapd_cfg.c_config, $4); free($4); } - | SET IAPP INTERFACE STRING + | SET IAPP INTERFACE STRING { strlcpy(hostapd_cfg.c_iapp_iface, $4, sizeof(hostapd_cfg.c_iapp_iface)); @@ -129,11 +129,11 @@ option : SET HOSTAP INTERFACE STRING free($4); } - | SET IAPP MODE MULTICAST + | SET IAPP MODE MULTICAST { hostapd_cfg.c_flags &= ~HOSTAPD_CFG_F_BRDCAST; } - | SET IAPP MODE BROADCAST + | SET IAPP MODE BROADCAST { hostapd_cfg.c_flags |= HOSTAPD_CFG_F_BRDCAST; } |