]> git.proxmox.com Git - mirror_frr.git/commitdiff
isisd: don't use POSIX reserved y1/yn names
authorDavid Lamparter <equinox@opensourcerouting.org>
Tue, 3 Mar 2015 07:56:35 +0000 (08:56 +0100)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Tue, 7 Jun 2016 13:00:37 +0000 (09:00 -0400)
y1 and yn are POSIX standard names for Bessel functions.  For
consistency, just rename all of these variables from "y" to "yy".

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
isisd/topology/spgrid.c

index df09d0b2b6a7fdc876311cc5577550eb1e877551..40147fb5b6f940bdcc01faa7b313c2d1a8b65aa5 100644 (file)
@@ -50,8 +50,8 @@ long   X,   /* horizontal size of grid */
 
 long   x,
        y,
-       ya1, y2, yp,
-       dl, dx, xn, yan, count,
+       yy1, yy2, yyp,
+       dl, dx, xn, yyn, count,
        *mess;
 
 double n;
@@ -670,12 +670,12 @@ gen_spgrid_topology (struct vty *vty, struct list *topology)
 
     for ( k = ax; k > 0; k -- )
        {
-         ya1 = nrand ( Y );
+         yy1 = nrand ( Y );
          do
-            y2 = nrand ( Y );
-         while ( y2 == ya1 );
-         i  = NODE ( x, ya1 );
-         j  = NODE ( x, y2 );
+            yy2 = nrand ( Y );
+         while ( yy2 == yy1 );
+         i  = NODE ( x, yy1 );
+         j  = NODE ( x, yy2 );
          l = am + nrand ( al );
          print_arc (vty, topology,  i, j, l );
        }
@@ -711,13 +711,13 @@ gen_spgrid_topology (struct vty *vty, struct list *topology)
          dx = xn - x;
          if ( ip_f )
            {
-             yp = nrand(Y-y);
-             yan = mess[ yp ];
-                mess[ yp ] = mess[ Y - y - 1 ];
+             yyp = nrand(Y-y);
+             yyn = mess[ yyp ];
+                mess[ yyp ] = mess[ Y - y - 1 ];
            }
          else
-               yan =  y;
-         j = NODE ( xn, yan );
+               yyn =  y;
+         j = NODE ( xn, yyn );
          l = im + nrand ( il );
          if ( in != 0 )
               l *= (long) ( in * dx );