]> git.puffer.fish Git - matthieu/frr.git/commitdiff
[quagga-dev 489] - fix ripd version send by Krzysztof Oledzki.
authorhasso <hasso>
Wed, 3 Mar 2004 19:48:48 +0000 (19:48 +0000)
committerhasso <hasso>
Wed, 3 Mar 2004 19:48:48 +0000 (19:48 +0000)
ripd/ChangeLog
ripd/ripd.c

index 5e5405824a5dd585b84b9f694ba919eedc52d677..5820f424a3bf85cb1705d8a03e54d41b415010d8 100644 (file)
@@ -1,6 +1,6 @@
 2004-03-03 Krzysztof Oledzki <oleq@ans.pl>
 
-       * ripd.c: fix "show ip rip".
+       * ripd.c: fix "show ip rip" and per interface rip version selection.
 
 2004-01-23 sowmini.varadhan@sun.com
 
index 608eee88c18e5512515ee3e3d949fdf56a6e0c78..a69963be1ab8da135edfd3344fbd8213e4bfab30 100644 (file)
@@ -2344,7 +2344,7 @@ rip_update_interface (struct interface *ifp, u_char version, int route_type,
       if (IS_RIP_DEBUG_EVENT)
        zlog_info ("multicast announce on %s ", ifp->name);
 
-      rip_output_process (ifp, NULL, NULL, route_type, rip->version_send
+      rip_output_process (ifp, NULL, NULL, route_type, version
                           sconn, saddr);
       return;
     }
@@ -2373,7 +2373,7 @@ rip_update_interface (struct interface *ifp, u_char version, int route_type,
                           inet_ntoa (to.sin_addr), ifp->name);
 
              rip_output_process (ifp, connected->address, &to, route_type,
-                                rip->version_send, connected, saddr);
+                                version, connected, saddr);
            }
        }
     }