---
 lib/vty.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/vty.c b/lib/vty.c
index e4510f8..aafa271 100644
--- a/lib/vty.c
+++ b/lib/vty.c
@@ -423,7 +423,7 @@ vty_command (struct vty *vty, char *buf)
       snprintf(vty_str, sizeof(vty_str), "vty[??]@%s", vty->address);
       if (vty)
         for (i = 0; i < vector_active (vtyvec); i++)
-          if ((vty == vector_slot (vtyvec, i)))
+          if (vty == vector_slot (vtyvec, i))
             {
               snprintf(vty_str, sizeof(vty_str), "vty[%d]@%s",
                                                  i, vty->address);
-- 
2.1.3


_______________________________________________
Quagga-dev mailing list
Quagga-dev@lists.quagga.net
https://lists.quagga.net/mailman/listinfo/quagga-dev

Reply via email to