aboutsummaryrefslogtreecommitdiff
path: root/src/pq
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2016-02-24 21:31:07 +0000
committerDaniel Golle <daniel@makrotopia.org>2016-02-24 21:31:07 +0000
commit232cf1d42677f94f5d0df487490878bb7fc792c4 (patch)
treef249ee3f6e91afd2a99a1d62e2b9579c40f348d3 /src/pq
parentd91c915d84f15f24fb985c62b5a1d520ae3283c0 (diff)
downloadgnunet-232cf1d42677f94f5d0df487490878bb7fc792c4.tar.gz
gnunet-232cf1d42677f94f5d0df487490878bb7fc792c4.zip
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.
Diffstat (limited to 'src/pq')
-rw-r--r--src/pq/pq.c2
-rw-r--r--src/pq/pq_query_helper.c2
-rw-r--r--src/pq/pq_result_helper.c2
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 @@
21 * @author Christian Grothoff 21 * @author Christian Grothoff
22 */ 22 */
23#include "platform.h" 23#include "platform.h"
24#include <gnunet/gnunet_util_lib.h> 24#include "gnunet_util_lib.h"
25#include "gnunet_pq_lib.h" 25#include "gnunet_pq_lib.h"
26 26
27 27
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 @@
19 * @author Christian Grothoff 19 * @author Christian Grothoff
20 */ 20 */
21#include "platform.h" 21#include "platform.h"
22#include <gnunet/gnunet_util_lib.h> 22#include "gnunet_util_lib.h"
23#include "gnunet_pq_lib.h" 23#include "gnunet_pq_lib.h"
24 24
25 25
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 @@
19 * @author Christian Grothoff 19 * @author Christian Grothoff
20 */ 20 */
21#include "platform.h" 21#include "platform.h"
22#include <gnunet/gnunet_util_lib.h> 22#include "gnunet_util_lib.h"
23#include "gnunet_pq_lib.h" 23#include "gnunet_pq_lib.h"
24 24
25 25