compile error

Wichert Akkerman wichert at wiggy.net
Tue Jul 7 14:13:59 UTC 2009


Current subversion has a typo, which breaks compilation. The fix is trivial:

Index: src/options.c
===================================================================
--- src/options.c       (revision 203)
+++ src/options.c       (working copy)
@@ -686,7 +686,7 @@
                    mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
           }

-         for (i = 0, i < 6, i++)
+         for (i = 0; i < 6; i++)
             options.macok[options.macoklen][i] = (unsigned char) mac[i];

           options.macoklen++;


-- 
Wichert Akkerman <wichert at wiggy.net>   It is simple to make things.
http://www.wiggy.net/                  It is hard to make things simple.



More information about the Chilli mailing list