diff options
author | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2002-12-20 19:57:38 +0000 |
---|---|---|
committer | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2002-12-20 19:57:38 +0000 |
commit | bcb3842c08cb7f2ac47b47e086b68768aa1cd88b (patch) | |
tree | f7beb1e476d9cb1e20c820a3efbb139ba6930738 /sbin/pfctl/parse.y | |
parent | d842ee6c3c3ff5009b9233a8c19837461daf4b88 (diff) |
remove a redundant assignment.
Diffstat (limited to 'sbin/pfctl/parse.y')
-rw-r--r-- | sbin/pfctl/parse.y | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y index 175517f092e..09ed986e78f 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.266 2002/12/19 10:58:21 dhartmei Exp $ */ +/* $OpenBSD: parse.y,v 1.267 2002/12/20 19:57:37 dhartmei Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -2220,7 +2220,6 @@ binatrule : no BINAT interface af proto FROM host TO ipspec redirection sizeof(binat.ifname)); free($3); } - binat.af = $4; if ($5 != NULL) { binat.proto = $5->proto; free($5); |