diff options
author | PaulK <contact@paulk.fr> | 2012-02-24 22:50:33 +0100 |
---|---|---|
committer | PaulK <contact@paulk.fr> | 2012-02-24 22:50:33 +0100 |
commit | d7fd7cc69e04c5227751efcc16bad66ca060965d (patch) | |
tree | bbd00303dc08624ff0910c7d3eb4f92d3de3987f /tools | |
parent | e64584f780edddc0816ebafb6ebb13cdd5fa95fb (diff) | |
download | external_libsamsung-ipc-d7fd7cc69e04c5227751efcc16bad66ca060965d.zip external_libsamsung-ipc-d7fd7cc69e04c5227751efcc16bad66ca060965d.tar.gz external_libsamsung-ipc-d7fd7cc69e04c5227751efcc16bad66ca060965d.tar.bz2 |
Fixed modemctrl for sec header changes
Diffstat (limited to 'tools')
-rw-r--r-- | tools/modemctrl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/modemctrl.c b/tools/modemctrl.c index 891bfd7..089375a 100644 --- a/tools/modemctrl.c +++ b/tools/modemctrl.c @@ -149,7 +149,7 @@ void modem_set_sec_pin_status(struct ipc_client *client, char *pin1, char *pin2) void modem_response_sec(struct ipc_client *client, struct ipc_message_info *resp) { - struct ipc_sec_pin_status_noti *pin_status; + struct ipc_sec_pin_status_response *pin_status; unsigned char type; int status; char *data; @@ -157,7 +157,7 @@ void modem_response_sec(struct ipc_client *client, struct ipc_message_info *resp switch(IPC_COMMAND(resp)) { case IPC_SEC_PIN_STATUS : - pin_status = (struct ipc_sec_pin_status_noti *)resp->data; + pin_status = (struct ipc_sec_pin_status_response *)resp->data; switch(pin_status->type) { |