]> git.saurik.com Git - redis.git/blobdiff - src/replication.c
Fix compilation on FreeBSD. Thanks to @koobs on twitter.
[redis.git] / src / replication.c
index 72b88977afeb7aa5f7b161fc15a7445726aea2f3..871ce95aeb0b2ed8d81431ab32c2cb9193a2477c 100644 (file)
@@ -3,6 +3,7 @@
 #include <sys/time.h>
 #include <unistd.h>
 #include <fcntl.h>
+#include <sys/socket.h>
 #include <sys/stat.h>
 
 /* ---------------------------------- MASTER -------------------------------- */
@@ -744,7 +745,7 @@ void replicationCron(void) {
      * So slaves can implement an explicit timeout to masters, and will
      * be able to detect a link disconnection even if the TCP connection
      * will not actually go down. */
-    if (!(server.cronloops % (server.repl_ping_slave_period*10))) {
+    if (!(server.cronloops % (server.repl_ping_slave_period * REDIS_HZ))) {
         listIter li;
         listNode *ln;