*: remove stray extra semicolons

Some places had extra semicolons where none belong.  Remove them.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
(cherry picked from commit b7d5021bfa161f797cbfb1e92bf5b94327fb1b71)
This commit is contained in:
David Lamparter 2015-03-03 08:53:18 +01:00 committed by Daniel Walton
parent 7ebe974831
commit 010e1aa65e
4 changed files with 7 additions and 7 deletions

View File

@ -3839,7 +3839,7 @@ ALIAS (set_aspath_prepend,
"Transform BGP AS_PATH attribute\n"
"Prepend to the as-path\n"
"Use the peer's AS-number\n"
"Number of times to insert");
"Number of times to insert")
DEFUN (no_set_aspath_prepend,
no_set_aspath_prepend_cmd,

View File

@ -48,7 +48,7 @@ struct bgp_node
* @see bgp_node_to_rnode
* @see bgp_node_from_rnode
*/
ROUTE_NODE_FIELDS;
ROUTE_NODE_FIELDS
struct bgp_adj_out *adj_out;

View File

@ -1740,7 +1740,7 @@ ALIAS (area_passwd_md5,
"Authentication\n"
"SNP PDUs\n"
"Send but do not check PDUs on receiving\n"
"Send and check PDUs on receiving\n");
"Send and check PDUs on receiving\n")
DEFUN (area_passwd_clear,
area_passwd_clear_cmd,
@ -1798,7 +1798,7 @@ ALIAS (area_passwd_clear,
"Authentication\n"
"SNP PDUs\n"
"Send but do not check PDUs on receiving\n"
"Send and check PDUs on receiving\n");
"Send and check PDUs on receiving\n")
DEFUN (no_area_passwd,
no_area_passwd_cmd,
@ -1878,7 +1878,7 @@ ALIAS (domain_passwd_md5,
"Authentication\n"
"SNP PDUs\n"
"Send but do not check PDUs on receiving\n"
"Send and check PDUs on receiving\n");
"Send and check PDUs on receiving\n")
DEFUN (domain_passwd_clear,
domain_passwd_clear_cmd,
@ -1936,7 +1936,7 @@ ALIAS (domain_passwd_clear,
"Authentication\n"
"SNP PDUs\n"
"Send but do not check PDUs on receiving\n"
"Send and check PDUs on receiving\n");
"Send and check PDUs on receiving\n")
DEFUN (no_domain_passwd,
no_domain_passwd_cmd,

View File

@ -92,7 +92,7 @@ struct route_table
/* Each routing entry. */
struct route_node
{
ROUTE_NODE_FIELDS;
ROUTE_NODE_FIELDS
#define l_left link[0]
#define l_right link[1]