diff options
author | Renato Westphal <renato@cvs.openbsd.org> | 2013-10-15 20:21:27 +0000 |
---|---|---|
committer | Renato Westphal <renato@cvs.openbsd.org> | 2013-10-15 20:21:27 +0000 |
commit | ce38752c2223de9f1a89440447cd431d731e3a92 (patch) | |
tree | 444a8725545fc812f6ae50c171c8a9711dcfcc09 /usr.sbin/ldpd/neighbor.c | |
parent | 9f5335e4b55dca498205858504e957335b9cf308 (diff) |
Fix whitespace and other style issues.
OK claudio@
Diffstat (limited to 'usr.sbin/ldpd/neighbor.c')
-rw-r--r-- | usr.sbin/ldpd/neighbor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ldpd/neighbor.c b/usr.sbin/ldpd/neighbor.c index a9bd0f5d7fd..8e703cec584 100644 --- a/usr.sbin/ldpd/neighbor.c +++ b/usr.sbin/ldpd/neighbor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: neighbor.c,v 1.38 2013/06/04 02:39:10 claudio Exp $ */ +/* $OpenBSD: neighbor.c,v 1.39 2013/10/15 20:21:26 renato Exp $ */ /* * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org> @@ -288,9 +288,9 @@ int nbr_session_active_role(struct nbr *nbr) { if (ntohl(ldpe_router_id()) > ntohl(nbr->addr.s_addr)) - return 1; + return (1); - return 0; + return (0); } /* timers */ |