diff --git a/obexd/src/manager.c b/obexd/src/manager.c
index a67838c..00f3537 100644
--- a/obexd/src/manager.c
+++ b/obexd/src/manager.c
static gboolean get_root(const GDBusPropertyTable *property,
DBusMessageIter *iter, void *data)
{
- struct obex_session *os = data;
const char *root;
root = obex_option_root_folder();
void manager_emit_transfer_started(struct obex_transfer *transfer)
{
- static unsigned int id = 0;
-
transfer->status = TRANSFER_STATUS_ACTIVE;
g_dbus_emit_property_changed(connection, transfer->path,
struct obex_session *os = transfer->session;
DBusMessage *msg;
DBusPendingCall *call;
- const char *filename = os->name ? os->name : "";
- const char *type = os->type ? os->type : "";
unsigned int watch;
gboolean got_reply;