From: Szymon Janc <szymon.janc@codecoup.pl>
To: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH] client: Fix removing all devices
Date: Fri, 12 Feb 2016 20:02:52 +0100 [thread overview]
Message-ID: <1597201.TR71jg3mP9@ix> (raw)
In-Reply-To: <1455284801-2798-1-git-send-email-szymon.janc@codecoup.pl>
On Friday 12 February 2016 14:46:41 Szymon Janc wrote:
> cmd_remove takes address string not device path.
> ---
> client/main.c | 29 +++++++++++++++++------------
> 1 file changed, 17 insertions(+), 12 deletions(-)
>
> diff --git a/client/main.c b/client/main.c
> index be785c5..b18bedd 100644
> --- a/client/main.c
> +++ b/client/main.c
> @@ -1333,10 +1333,24 @@ static void remove_device_setup(DBusMessageIter
> *iter, void *user_data) dbus_message_iter_append_basic(iter,
> DBUS_TYPE_OBJECT_PATH, &path); }
>
> +static void remove_device(GDBusProxy *proxy)
> +{
> + char *path;
> +
> + path = g_strdup(g_dbus_proxy_get_path(proxy));
> +
> + if (g_dbus_proxy_method_call(default_ctrl, "RemoveDevice",
> + remove_device_setup,
> + remove_device_reply,
> + path, g_free) == FALSE) {
> + rl_printf("Failed to remove device\n");
> + g_free(path);
> + }
> +}
> +
> static void cmd_remove(const char *arg)
> {
> GDBusProxy *proxy;
> - char *path;
>
> if (!arg || !strlen(arg)) {
> rl_printf("Missing device address argument\n");
> @@ -1351,7 +1365,7 @@ static void cmd_remove(const char *arg)
>
> for (list = g_list_first(dev_list); list; list = g_list_next(list)) {
> GDBusProxy *proxy = list->data;
> - cmd_remove(g_dbus_proxy_get_path(proxy));
> + remove_device(proxy);
> }
>
> return;
> @@ -1363,16 +1377,7 @@ static void cmd_remove(const char *arg)
> return;
> }
>
> - path = g_strdup(g_dbus_proxy_get_path(proxy));
> -
> - if (g_dbus_proxy_method_call(default_ctrl, "RemoveDevice",
> - remove_device_setup,
> - remove_device_reply,
> - path, g_free) == FALSE) {
> - rl_printf("Failed to remove device\n");
> - g_free(path);
> - return;
> - }
> + remove_device(proxy);
> }
>
> static void connect_reply(DBusMessage *message, void *user_data)
Applied.
--
pozdrawiam
Szymon Janc
prev parent reply other threads:[~2016-02-12 19:02 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-12 13:46 [PATCH] client: Fix removing all devices Szymon Janc
2016-02-12 19:02 ` Szymon Janc [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1597201.TR71jg3mP9@ix \
--to=szymon.janc@codecoup.pl \
--cc=linux-bluetooth@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).