]> git.proxmox.com Git - mirror_frr.git/commitdiff
whitespace/comment fixes per qlyoung
authorG. Paul Ziemba <paulz@labn.net>
Fri, 9 Feb 2018 21:14:22 +0000 (13:14 -0800)
committerG. Paul Ziemba <paulz@labn.net>
Fri, 9 Feb 2018 21:14:22 +0000 (13:14 -0800)
Signed-off-by: G. Paul Ziemba <paulz@labn.net>
bgpd/bgp_route.c
bgpd/bgpd.h

index 2a555aae32e1b969498d9e4e2d7bff3d032238b0..046c59aa5413ba390ac2c58444439f1bc0f742f4 100644 (file)
@@ -9565,9 +9565,9 @@ static int bgp_peer_counts(struct vty *vty, struct peer *peer, afi_t afi,
        pcounts.table = peer->bgp->rib[afi][safi];
 
        /* in-place call via thread subsystem so as to record execution time
-        *    * stats for the thread-walk (i.e. ensure this can't be blamed on
-        *       * on just vty_read()).
-        *          */
+        * stats for the thread-walk (i.e. ensure this can't be blamed on
+        * on just vty_read()).
+        */
        thread_execute(bm->master, bgp_peer_count_walker, &pcounts, 0);
 
        if (use_json) {
index 747515a87080a1989cc804c1740294ef59bb4dc2..51709f9ed0efddb50fca44d6c44705bea8f002a2 100644 (file)
@@ -895,8 +895,8 @@ struct peer {
                                       memory_order_relaxed)
 
        /* Statistics field */
-       _Atomic uint32_t open_in;        /* Open message input count */
-       _Atomic uint32_t open_out;      /* Open message output count */
+       _Atomic uint32_t open_in;         /* Open message input count */
+       _Atomic uint32_t open_out;        /* Open message output count */
        _Atomic uint32_t update_in;       /* Update message input count */
        _Atomic uint32_t update_out;      /* Update message ouput count */
        _Atomic time_t update_time;       /* Update message received time. */