diff options
Diffstat (limited to 'plugins/wavecom.c')
-rw-r--r-- | plugins/wavecom.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/wavecom.c b/plugins/wavecom.c index 77b7aa16..73fa502c 100644 --- a/plugins/wavecom.c +++ b/plugins/wavecom.c @@ -62,7 +62,9 @@ static void wavecom_remove(struct ofono_modem *modem) static void wavecom_debug(const char *str, void *user_data) { - ofono_info("%s", str); + const char *prefix = user_data; + + ofono_info("%s%s", prefix, str); } static int wavecom_enable(struct ofono_modem *modem) @@ -110,7 +112,7 @@ static int wavecom_enable(struct ofono_modem *modem) return -ENOMEM; if (getenv("OFONO_AT_DEBUG")) - g_at_chat_set_debug(chat, wavecom_debug, NULL); + g_at_chat_set_debug(chat, wavecom_debug, ""); ofono_modem_set_data(modem, chat); |