diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-01-11 21:36:50 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-01-11 21:36:50 +0000 |
commit | d03df049a6230e3bd53774362dfd2475f6aa0081 (patch) | |
tree | a889654ab11c8b796e30622961e33655d21aec3b /usr.sbin | |
parent | cd5d92cf7618b9cc186c62d0a7e9cf667d385a88 (diff) |
Join two lines.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ospfd/parse.y | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/ospfd/parse.y b/usr.sbin/ospfd/parse.y index 3b71518c72f..96e56c7735f 100644 --- a/usr.sbin/ospfd/parse.y +++ b/usr.sbin/ospfd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.40 2006/12/21 17:22:29 claudio Exp $ */ +/* $OpenBSD: parse.y,v 1.41 2007/01/11 21:36:49 claudio Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -496,8 +496,7 @@ interface : INTERFACE STRING { if (iface == NULL) YYERROR; iface->area = area; - LIST_INSERT_HEAD(&area->iface_list, - iface, entry); + LIST_INSERT_HEAD(&area->iface_list, iface, entry); memcpy(&ifacedefs, defs, sizeof(ifacedefs)); md_list_copy(&ifacedefs.md_list, &defs->md_list); |