diff --git a/examples/history.c b/examples/history.c index b7aec061..0a1e8d7e 100644 --- a/examples/history.c +++ b/examples/history.c @@ -68,6 +68,9 @@ static void example_history_call_ended(struct ofono_history_context *context, else ofono_debug("From: %s", from); + if (call->cnap_validity == 0) + ofono_debug("Name from Network: %s\n", call->name); + strftime(buf, 127, "%Y-%m-%dT%H:%M:%S%z", localtime(&start)); buf[127] = '\0'; ofono_debug("StartTime: %s", buf); @@ -96,6 +99,10 @@ static void example_history_call_missed(struct ofono_history_context *context, from = phone_number_to_string(&call->phone_number); ofono_debug("From: %s", from); + + if (call->cnap_validity == 0) + ofono_debug("Name from Network: %s\n", call->name); + strftime(buf, 127, "%Y-%m-%dT%H:%M:%S%z", localtime(&when)); buf[127] = '\0'; ofono_debug("When: %s", buf);