diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-07-29 18:47:44 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-07-29 18:47:44 +0000 |
commit | d206ee98b508b43447e1e7b9d4b253366ceb2f7a (patch) | |
tree | 5bef53c1df601c1c7e039ad6e6bb6d118be7a342 /sbin/pfctl/parse.y | |
parent | 6b78b159d102a0d9c9569fdfe01402c43ed808db (diff) |
indent
Diffstat (limited to 'sbin/pfctl/parse.y')
-rw-r--r-- | sbin/pfctl/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y index 8ffb82445c8..98daaec5d9e 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.403 2003/07/19 13:08:58 cedric Exp $ */ +/* $OpenBSD: parse.y,v 1.404 2003/07/29 18:47:43 deraadt Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -1776,7 +1776,7 @@ xhost : not host { $$ = $2; } | NOROUTE { - $$ = calloc(1, sizeof(struct node_host)); + $$ = calloc(1, sizeof(struct node_host)); if ($$ == NULL) err(1, "xhost: calloc"); $$->addr.type = PF_ADDR_NOROUTE; |