diff options
| -rw-r--r-- | CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/ipcpd/normal/dht.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/CMakeLists.txt b/CMakeLists.txt index 3502504e..fddff4d0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ include(GNUInstallDirs)  set(PACKAGE_VERSION_MAJOR  0)  set(PACKAGE_VERSION_MINOR 11) -set(PACKAGE_VERSION_PATCH  4) +set(PACKAGE_VERSION_PATCH  5)  set(PACKAGE_NAME        "${CMAKE_PROJECT_NAME}")  set(PACKAGE_DESCRIPTION "The Ouroboros prototype") diff --git a/src/ipcpd/normal/dht.c b/src/ipcpd/normal/dht.c index faf3a35e..59451d19 100644 --- a/src/ipcpd/normal/dht.c +++ b/src/ipcpd/normal/dht.c @@ -28,6 +28,7 @@  #define OUROBOROS_PREFIX DHT  #include <ouroboros/hash.h> +#include <ouroboros/ipcp-dev.h>  #include <ouroboros/bitmap.h>  #include <ouroboros/errno.h>  #include <ouroboros/logs.h> @@ -2736,7 +2737,6 @@ static void handle_event(void *       self,                          if (dht_set_state(dht, DHT_JOINING) == 0 ||                              dht_wait_running(dht)) { -                                log_dbg("creating join thread.");                                  if (pthread_create(&thr, NULL, join_thr, inf)) {                                          dht_set_state(dht, DHT_INIT);                                          free(inf); | 
