diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/util/event.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,6 +1,11 @@ 2007-12-21 Chris Lord <chris@openedhand.com> * src/util/event.c: (inds_handler): + Back out change - sms->stat just contains junk (uninitialised?) + +2007-12-21 Chris Lord <chris@openedhand.com> + + * src/util/event.c: (inds_handler): Delivery status type is in sms->stat, not sms->payload.coding_scheme (which is always zero) diff --git a/src/util/event.c b/src/util/event.c index 88ac447..d063642 100644 --- a/src/util/event.c +++ b/src/util/event.c @@ -134,7 +134,7 @@ static int inds_handler(struct lgsm_handle *lh, int evt, struct gsmd_sms_list *sms; sms = (struct gsmd_sms_list *) aux->data; printf("EVENT: Incoming Status Report\n"); - printf("message ref = %d, status = %d\n", sms->index,sms->stat); + printf("message ref = %d, status = %d\n", sms->index,sms->payload.coding_scheme); } else printf("EVENT: Incoming Status Report stored at location %i\n", |