Use usleep() instead of sleep(), MinGW complained.
authorGuus Sliepen <guus@tinc-vpn.org>
Sat, 23 Jul 2011 12:11:44 +0000 (14:11 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sat, 23 Jul 2011 12:11:44 +0000 (14:11 +0200)
lib/dropin.c
lib/dropin.h
src/net.c

index 4aed74e..eb17aca 100644 (file)
@@ -165,7 +165,7 @@ int gettimeofday(struct timeval *tv, void *tz) {
 #endif
 
 #ifndef HAVE_USLEEP
-int usleep(long usec) {
+int usleep(long long usec) {
        struct timeval tv = {usec / 1000000, (usec / 1000) % 1000};
        select(0, NULL, NULL, NULL, &tv);
        return 0;
index 22fe36d..dc7dbee 100644 (file)
@@ -42,7 +42,7 @@ extern int gettimeofday(struct timeval *, void *);
 #endif
 
 #ifndef HAVE_USLEEP
-extern int usleep(long);
+extern int usleep(long long);
 #endif
 
 #endif                                                 /* __DROPIN_H__ */
index b3f924a..8762db3 100644 (file)
--- a/src/net.c
+++ b/src/net.c
@@ -472,7 +472,7 @@ int main_loop(void) {
 
                        if(contradicting_del_edge > 100 && contradicting_add_edge > 100) {
                                logger(LOG_WARNING, "Possible node with same Name as us! Sleeping %d seconds.", sleeptime);
-                               sleep(sleeptime);
+                               usleep(sleeptime * 1000000LL);
                                sleeptime *= 2;
                                if(sleeptime < 0)
                                        sleeptime = 3600;