EDS backend supports only phonebook (/telecom/pb.vcf). --- plugins/phonebook-ebook.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/plugins/phonebook-ebook.c b/plugins/phonebook-ebook.c index f223965..dc78d17 100644 --- a/plugins/phonebook-ebook.c +++ b/plugins/phonebook-ebook.c @@ -513,6 +513,13 @@ void *phonebook_pull(const char *name, const struct apparam_field *params, { struct query_context *data; + if (g_strcmp0("/telecom/pb.vcf", name) != 0) { + if (err) + *err = -ENOENT; + + return NULL; + } + data = g_new0(struct query_context, 1); data->contacts_cb = cb; data->params = params; -- 1.7.5.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html