From 613fe06d5b545d62a521c3f2c9256396092711ae Mon Sep 17 00:00:00 2001 From: Dongchul Lim Date: Thu, 17 Apr 2014 19:37:39 +0900 Subject: [PATCH] Block get mailbox info Change-Id: I14fe797c4944c2202f2be62017126f726940b41f --- src/atmodem_sim.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/atmodem_sim.c b/src/atmodem_sim.c index 8dbd46b..4bff295 100755 --- a/src/atmodem_sim.c +++ b/src/atmodem_sim.c @@ -1240,6 +1240,7 @@ static void __on_response_atmodem_sim_get_file_data(TcorePending *p, case TEL_SIM_EF_CPHS_MAILBOX_NUMBERS: /* linear type */ case TEL_SIM_EF_MBDN: /* linear type */ +#if 0 //TODO tcore_sim_decode_xdn was changed from libtcore. It should be changed according to libtcore dr = tcore_sim_decode_xdn((unsigned char *)res, res_len, file_meta->mb_list[file_meta->current_index-1].alpha_id, file_meta->mb_list[file_meta->current_index-1].number); @@ -1249,6 +1250,7 @@ static void __on_response_atmodem_sim_get_file_data(TcorePending *p, file_meta->mb_list[file_meta->current_index-1].profile_id = file_meta->current_index; +#endif break; case TEL_SIM_EF_CPHS_VOICE_MSG_WAITING: /* transparent type */ @@ -2676,6 +2678,7 @@ static void __on_response_atmodem_sim_read_data(TcorePending *p, case TEL_SIM_EF_CPHS_MAILBOX_NUMBERS: /* linear type */ case TEL_SIM_EF_MBDN: /* linear type */ +#if 0 //TODO tcore_sim_decode_xdn was changed from libtcore. It should be changed according to libtcore dr = tcore_sim_decode_xdn((unsigned char *)res, res_len, file_meta->mb_list[file_meta->current_index-1].alpha_id, file_meta->mb_list[file_meta->current_index-1].number); @@ -2683,6 +2686,7 @@ static void __on_response_atmodem_sim_read_data(TcorePending *p, strlen(file_meta->mb_list[file_meta->current_index-1].alpha_id); file_meta->mb_list[file_meta->current_index-1].profile_id = file_meta->current_index; +#endif break; case TEL_SIM_EF_CPHS_VOICE_MSG_WAITING: /* transparent type */ -- 2.7.4