From: Marcel Holtmann Date: Sun, 17 Jun 2012 07:58:35 +0000 (-0700) Subject: sms: Make PDU data arrays const X-Git-Tag: 1.8~71 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2ead77e13361255061910b50a1f135b21772201e;p=platform%2Fupstream%2Fofono.git sms: Make PDU data arrays const --- diff --git a/include/sms.h b/include/sms.h index 9ecf866..ce7fe13 100644 --- a/include/sms.h +++ b/include/sms.h @@ -60,9 +60,9 @@ struct ofono_sms_driver { ofono_sms_bearer_set_cb_t, void *data); }; -void ofono_sms_deliver_notify(struct ofono_sms *sms, unsigned char *pdu, +void ofono_sms_deliver_notify(struct ofono_sms *sms, const unsigned char *pdu, int len, int tpdu_len); -void ofono_sms_status_notify(struct ofono_sms *sms, unsigned char *pdu, +void ofono_sms_status_notify(struct ofono_sms *sms, const unsigned char *pdu, int len, int tpdu_len); int ofono_sms_driver_register(const struct ofono_sms_driver *d); diff --git a/src/sms.c b/src/sms.c index ae0ed78..acfc39b 100644 --- a/src/sms.c +++ b/src/sms.c @@ -1459,7 +1459,7 @@ static inline gboolean handle_mwi(struct ofono_sms *sms, struct sms *s) return discard; } -void ofono_sms_deliver_notify(struct ofono_sms *sms, unsigned char *pdu, +void ofono_sms_deliver_notify(struct ofono_sms *sms, const unsigned char *pdu, int len, int tpdu_len) { struct ofono_modem *modem = __ofono_atom_get_modem(sms->atom); @@ -1606,7 +1606,7 @@ out: handle_deliver(sms, &s); } -void ofono_sms_status_notify(struct ofono_sms *sms, unsigned char *pdu, +void ofono_sms_status_notify(struct ofono_sms *sms, const unsigned char *pdu, int len, int tpdu_len) { struct sms s;