Index: /trunk/skiplist.c =================================================================== --- /trunk/skiplist.c (revision 2) +++ /trunk/skiplist.c (revision 16) @@ -144,5 +144,5 @@ m = sl->top; while(m) { - int compared; + int compared = 1; if(m->next) compared=comp(data, m->next->data); if(compared == 0) { Index: /trunk/hash.c =================================================================== --- /trunk/hash.c (revision 11) +++ /trunk/hash.c (revision 16) @@ -14,4 +14,5 @@ #include #include +#include #include "hash.h" Index: /trunk/spreadlogd.c =================================================================== --- /trunk/spreadlogd.c (revision 15) +++ /trunk/spreadlogd.c (revision 16) @@ -11,4 +11,5 @@ #include #include +#include #include #include @@ -19,5 +20,5 @@ #include "config.h" -#define SPREADLOGD_VERSION "1.4.1" +#define SPREADLOGD_VERSION "1.4.2" extern char *optarg; @@ -127,4 +128,7 @@ int main(int argc, char **argv) { +#ifdef SPREAD_VERSION + int mver, miver, pver; +#endif char *configfile = default_configfile; char *message;