Diff between a47064623286c0327eedd9f6cbb1e14e50de8032 and 26f20b39af69d847b4810c9f3c3078f9a5dbca34

Changed Files

File Additions Deletions Status
tools/obex-server-tool.c +2 -0 modified

Full Patch

diff --git a/tools/obex-server-tool.c b/tools/obex-server-tool.c
index 192ab5f..f82daad 100644
--- a/tools/obex-server-tool.c
+++ b/tools/obex-server-tool.c
@@ -64,6 +64,8 @@ static void disconn_func(GObex *obex, GError *err, gpointer user_data)
 static void req_func(GObex *obex, GObexPacket *req, gpointer user_data)
 {
 	g_print("Request 0x%02x\n", g_obex_packet_get_operation(req, NULL));
+
+	g_obex_response(obex, req, G_OBEX_RSP_SUCCESS, NULL, NULL);
 }
 
 static gboolean unix_accept(GIOChannel *chan, GIOCondition cond, gpointer data)