Update to FreeBSD head 2017-12-01

Git mirror commit e724f51f811a4b2bd29447f8b85ab5c2f9b88266.

Update #3472.
This commit is contained in:
Sebastian Huber
2018-08-09 14:02:09 +02:00
parent e4a8065910
commit bb80d9df8b
1197 changed files with 6535 additions and 2527 deletions

View File

@@ -1,6 +1,8 @@
/* $OpenBSD: parse.y,v 1.554 2008/10/17 12:59:53 henning Exp $ */
/*
/*-
* SPDX-License-Identifier: BSD-2-Clause
*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
* Copyright (c) 2001 Daniel Hartmeier. All rights reserved.
* Copyright (c) 2001 Theo de Raadt. All rights reserved.
@@ -4407,8 +4409,11 @@ route_host : STRING {
$$->tail = $$;
}
| '(' STRING host ')' {
struct node_host *n;
$$ = $3;
$$->ifname = $2;
for (n = $3; n != NULL; n = n->next)
n->ifname = $2;
}
;