2013-08-01 14:12:58

by Frederic Danis

[permalink] [raw]
Subject: [PATCH] profile: Fix error message in ext_auth

---
src/profile.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/profile.c b/src/profile.c
index 4a980f2..90c3535 100644
--- a/src/profile.c
+++ b/src/profile.c
@@ -1010,7 +1010,7 @@ static void ext_auth(DBusError *err, void *user_data)
bt_io_get(conn->io, &gerr, BT_IO_OPT_DEST, addr, BT_IO_OPT_INVALID);
if (gerr != NULL) {
error("Unable to get connect data for %s: %s",
- ext->name, err->message);
+ ext->name, gerr->message);
g_error_free(gerr);
goto drop;
}
--
1.7.9.5



2013-08-01 15:53:04

by Johan Hedberg

[permalink] [raw]
Subject: Re: [PATCH] profile: Fix error message in ext_auth

Hi Frederic,

On Thu, Aug 01, 2013, Frederic Danis wrote:
> ---
> src/profile.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)

Applied. Thanks.

Johan