diff options
author | Denis Kenzior <denkenz@gmail.com> | 2009-07-15 13:48:28 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-07-15 15:51:29 -0500 |
commit | 7104169eb2a27d7afbab083ca3c14bd1ea7df1c0 (patch) | |
tree | b7adb463cc6920b77a1598dc43323d9f9420a744 /drivers/atmodem | |
parent | 78a646797cf8b694cd3f8527f3bb8b8e6a1ac609 (diff) | |
download | ofono-7104169eb2a27d7afbab083ca3c14bd1ea7df1c0.tar.bz2 |
Fix printing binary version of the pdu
Diffstat (limited to 'drivers/atmodem')
-rw-r--r-- | drivers/atmodem/sms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/atmodem/sms.c b/drivers/atmodem/sms.c index 2343cede..aa7c1e84 100644 --- a/drivers/atmodem/sms.c +++ b/drivers/atmodem/sms.c @@ -356,7 +356,7 @@ static void at_cmt_notify(GAtResult *result, gpointer user_data) return; } - ofono_debug("Got new SMS Deliver PDU via CMT: %s, %d", pdu, tpdu_len); + ofono_debug("Got new SMS Deliver PDU via CMT: %s, %d", hexpdu, tpdu_len); decode_hex_own_buf(hexpdu, -1, &pdu_len, 0, pdu); ofono_sms_deliver_notify(modem, pdu, pdu_len, tpdu_len); |