summaryrefslogtreecommitdiffstats
path: root/plugins/ste.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-09-24 14:14:04 +0900
committerMarcel Holtmann <marcel@holtmann.org>2010-09-24 14:14:04 +0900
commitbe1912fe9c30426dc138a6a7acec068e9151297e (patch)
tree5611f2de3e7487493495fd3265875ef4b972ba44 /plugins/ste.c
parent7ab1258a76c50b45d8de9235ee1e72d1b495d73f (diff)
downloadofono-be1912fe9c30426dc138a6a7acec068e9151297e.tar.bz2
Make debug handling with OFONO_AT_DEBUG a bit more consistent
Diffstat (limited to 'plugins/ste.c')
-rw-r--r--plugins/ste.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/ste.c b/plugins/ste.c
index aab07041..508ad587 100644
--- a/plugins/ste.c
+++ b/plugins/ste.c
@@ -106,7 +106,9 @@ static void ste_remove(struct ofono_modem *modem)
static void ste_debug(const char *str, void *user_data)
{
- ofono_info("%s", str);
+ const char *prefix = user_data;
+
+ ofono_info("%s%s", prefix, str);
}
static gboolean init_simpin_check(gpointer user_data);
@@ -235,7 +237,7 @@ static int ste_enable(struct ofono_modem *modem)
return -ENOMEM;
if (getenv("OFONO_AT_DEBUG"))
- g_at_chat_set_debug(data->chat, ste_debug, NULL);
+ g_at_chat_set_debug(data->chat, ste_debug, "");
g_at_chat_send(data->chat, "AT&F E0 V1 X4 &C1 +CMEE=1",
NULL, NULL, NULL, NULL);