diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-06-02 21:52:03 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-06-02 21:52:03 -0700 |
commit | d06d87e27781671b6364161023ab06b023408fb8 (patch) | |
tree | bff5efcffb51d8ac3fab600dab7d0d79bf825ff3 | |
parent | 788b21cfb92da1ece05dd38392caf464818a6a28 (diff) | |
download | ofono-d06d87e27781671b6364161023ab06b023408fb8.tar.bz2 |
Fix debug channel prefix strings for Huawei plugin
-rw-r--r-- | plugins/huawei.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/huawei.c b/plugins/huawei.c index 1b7a185a..5b9d63aa 100644 --- a/plugins/huawei.c +++ b/plugins/huawei.c @@ -216,7 +216,7 @@ static int huawei_enable(struct ofono_modem *modem) g_at_chat_add_terminator(data->chat, "COMMAND NOT SUPPORT", -1, FALSE); if (getenv("OFONO_AT_DEBUG")) - g_at_chat_set_debug(data->chat, huawei_debug, ""); + g_at_chat_set_debug(data->chat, huawei_debug, "Modem:"); data->event = create_port(event_device); @@ -231,7 +231,7 @@ static int huawei_enable(struct ofono_modem *modem) if (getenv("OFONO_AT_DEBUG")) g_at_chat_set_debug(data->event, huawei_debug, - "EventChannel: "); + "Event:"); data->sim_state = 0; |