diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2007-11-19 15:20:19 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2007-11-19 15:20:19 +0000 |
commit | 4e72c0c8f690ef1ad70ff2ae6306e3f7857c68fc (patch) | |
tree | 5e5697fc3270fdc5d2e16f4b2acf8b1784d7ee84 /usr.sbin/relayd/parse.y | |
parent | 1dc99d944e184ff0355a708c94cc4faa2c0c45ee (diff) |
knf (replace some ';;' with a single ';')
Diffstat (limited to 'usr.sbin/relayd/parse.y')
-rw-r--r-- | usr.sbin/relayd/parse.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/relayd/parse.y b/usr.sbin/relayd/parse.y index 4bb3bd2a9b3..689cd6ab752 100644 --- a/usr.sbin/relayd/parse.y +++ b/usr.sbin/relayd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.82 2007/11/19 14:48:19 reyk Exp $ */ +/* $OpenBSD: parse.y,v 1.83 2007/11/19 15:20:18 reyk Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -839,7 +839,7 @@ protonode : nodetype APPEND STRING TO STRING marked { | nodetype EXPECT STRING FROM STRING mark { node.action = NODE_ACTION_EXPECT; node.key = strdup($5); - node.value = strdup($3);; + node.value = strdup($3); if (node.key == NULL || node.value == NULL) fatal("out of memory"); free($5); @@ -849,7 +849,7 @@ protonode : nodetype APPEND STRING TO STRING marked { | nodetype FILTER STRING FROM STRING mark { node.action = NODE_ACTION_FILTER; node.key = strdup($5); - node.value = strdup($3);; + node.value = strdup($3); if (node.key == NULL || node.value == NULL) fatal("out of memory"); free($5); |