Diff between 91de2012ac9768b5489f301e7b2a453dfe4cbca2 and 82113a16f3d2da5021c35af72bfbb67b2684f6bc

Changed Files

File Additions Deletions Status
obexd/client/bluetooth.c +5 -5 modified
obexd/client/map.c +6 -3 modified
obexd/client/pbap.c +6 -4 modified
obexd/plugins/phonebook-ebook.c +3 -2 modified
obexd/plugins/syncevolution.c +2 -2 modified

Full Patch

diff --git a/obexd/client/bluetooth.c b/obexd/client/bluetooth.c
index 8e09d03..1857c65 100644
--- a/obexd/client/bluetooth.c
+++ b/obexd/client/bluetooth.c
@@ -30,13 +30,13 @@
 #include <inttypes.h>
 
 #include <glib.h>
-#include <gdbus/gdbus.h>
 
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/rfcomm.h>
-#include <bluetooth/sdp.h>
-#include <bluetooth/sdp_lib.h>
+#include "lib/bluetooth.h"
+#include "lib/rfcomm.h"
+#include "lib/sdp.h"
+#include "lib/sdp_lib.h"
 
+#include "gdbus/gdbus.h"
 #include "btio/btio.h"
 
 #include "log.h"
diff --git a/obexd/client/map.c b/obexd/client/map.c
index e6c1073..10e2285 100644
--- a/obexd/client/map.c
+++ b/obexd/client/map.c
@@ -30,10 +30,13 @@
 #include <stdbool.h>
 #include <inttypes.h>
 #include <stdlib.h>
+
 #include <glib.h>
-#include <gdbus/gdbus.h>
-#include <gobex/gobex-apparam.h>
-#include <bluetooth/sdp.h>
+
+#include "lib/sdp.h"
+
+#include "gobex/gobex-apparam.h"
+#include "gdbus/gdbus.h"
 
 #include "dbus.h"
 #include "log.h"
diff --git a/obexd/client/pbap.c b/obexd/client/pbap.c
index 28203a8..6b93ed0 100644
--- a/obexd/client/pbap.c
+++ b/obexd/client/pbap.c
@@ -29,12 +29,14 @@
 #include <errno.h>
 #include <string.h>
 #include <stdio.h>
+
 #include <glib.h>
-#include <gdbus/gdbus.h>
 
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/sdp.h>
-#include <gobex/gobex-apparam.h>
+#include "lib/bluetooth.h"
+#include "lib/sdp.h"
+
+#include "gobex/gobex-apparam.h"
+#include "gdbus/gdbus.h"
 
 #include "log.h"
 
diff --git a/obexd/plugins/phonebook-ebook.c b/obexd/plugins/phonebook-ebook.c
index 2e49576..c339240 100644
--- a/obexd/plugins/phonebook-ebook.c
+++ b/obexd/plugins/phonebook-ebook.c
@@ -28,11 +28,12 @@
 
 #include <string.h>
 #include <errno.h>
-#include <glib.h>
-#include <bluetooth/bluetooth.h>
 
+#include <glib.h>
 #include <libebook/e-book.h>
 
+#include "lib/bluetooth.h"
+
 #include "log.h"
 #include "obex.h"
 #include "service.h"
diff --git a/obexd/plugins/syncevolution.c b/obexd/plugins/syncevolution.c
index fbeac1e..f1da945 100644
--- a/obexd/plugins/syncevolution.c
+++ b/obexd/plugins/syncevolution.c
@@ -34,9 +34,9 @@
 #include <glib.h>
 #include <dbus/dbus.h>
 
-#include <bluetooth/bluetooth.h>
+#include "lib/bluetooth.h"
 
-#include <gdbus/gdbus.h>
+#include "gdbus/gdbus.h"
 
 #include "btio/btio.h"
 #include "plugin.h"