Diff between 63adaa402e7c3749af42daadb9a1866394fb9d3f and 7bd86b5b9e61b57d82ebce68074203df33953762

Changed Files

File Additions Deletions Status
gobex/gobex-header.h +2 -2 modified
gobex/gobex-packet.h +2 -2 modified
gobex/gobex-transfer.c +2 -2 modified
gobex/gobex.h +2 -2 modified

Full Patch

diff --git a/gobex/gobex-header.h b/gobex/gobex-header.h
index c2f975f..6600b1b 100644
--- a/gobex/gobex-header.h
+++ b/gobex/gobex-header.h
@@ -25,8 +25,8 @@
 
 #include <glib.h>
 
-#include <gobex/gobex-defs.h>
-#include <gobex/gobex-apparam.h>
+#include "gobex/gobex-defs.h"
+#include "gobex/gobex-apparam.h"
 
 /* Header ID's */
 #define G_OBEX_HDR_INVALID	0x00
diff --git a/gobex/gobex-packet.h b/gobex/gobex-packet.h
index 6121fa7..d1007ea 100644
--- a/gobex/gobex-packet.h
+++ b/gobex/gobex-packet.h
@@ -26,8 +26,8 @@
 #include <stdarg.h>
 #include <glib.h>
 
-#include <gobex/gobex-defs.h>
-#include <gobex/gobex-header.h>
+#include "gobex/gobex-defs.h"
+#include "gobex/gobex-header.h"
 
 /* Request opcodes */
 #define G_OBEX_OP_CONNECT			0x00
diff --git a/gobex/gobex-transfer.c b/gobex/gobex-transfer.c
index 6720129..fe53530 100644
--- a/gobex/gobex-transfer.c
+++ b/gobex/gobex-transfer.c
@@ -27,8 +27,8 @@
 #include <string.h>
 #include <errno.h>
 
-#include "gobex.h"
-#include "gobex-debug.h"
+#include "gobex/gobex.h"
+#include "gobex/gobex-debug.h"
 
 #define FIRST_PACKET_TIMEOUT 60
 
diff --git a/gobex/gobex.h b/gobex/gobex.h
index fd2b274..5bc9103 100644
--- a/gobex/gobex.h
+++ b/gobex/gobex.h
@@ -26,8 +26,8 @@
 #include <stdarg.h>
 #include <glib.h>
 
-#include <gobex/gobex-defs.h>
-#include <gobex/gobex-packet.h>
+#include "gobex/gobex-defs.h"
+#include "gobex/gobex-packet.h"
 
 typedef enum {
 	G_OBEX_TRANSPORT_STREAM,