From 232cf1d42677f94f5d0df487490878bb7fc792c4 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Wed, 24 Feb 2016 21:31:07 +0000 Subject: [PATCH] pq: fix errornous include gnunet_util_lib.h can't be included from system's include path before gnunet installed it there. Include it from the sourcetree instead. --- src/pq/pq.c | 2 +- src/pq/pq_query_helper.c | 2 +- src/pq/pq_result_helper.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pq/pq.c b/src/pq/pq.c index fe796044e..37d067edd 100644 --- a/src/pq/pq.c +++ b/src/pq/pq.c @@ -21,7 +21,7 @@ * @author Christian Grothoff */ #include "platform.h" -#include +#include "gnunet_util_lib.h" #include "gnunet_pq_lib.h" diff --git a/src/pq/pq_query_helper.c b/src/pq/pq_query_helper.c index 5f2764b62..13c71446c 100644 --- a/src/pq/pq_query_helper.c +++ b/src/pq/pq_query_helper.c @@ -19,7 +19,7 @@ * @author Christian Grothoff */ #include "platform.h" -#include +#include "gnunet_util_lib.h" #include "gnunet_pq_lib.h" diff --git a/src/pq/pq_result_helper.c b/src/pq/pq_result_helper.c index dc5700730..48f073cda 100644 --- a/src/pq/pq_result_helper.c +++ b/src/pq/pq_result_helper.c @@ -19,7 +19,7 @@ * @author Christian Grothoff */ #include "platform.h" -#include +#include "gnunet_util_lib.h" #include "gnunet_pq_lib.h" -- 2.25.1