mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-10-14 10:27:12 +08:00
Update to FreeBSD head 2017-12-01
Git mirror commit e724f51f811a4b2bd29447f8b85ab5c2f9b88266. Update #3472.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
;
|
||||
|
||||
|
Reference in New Issue
Block a user