From 44a407c0d7ab08c8e146497db324a644f28312e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Sun, 27 Jun 2010 21:24:19 +0000 Subject: [PATCH] Print provider ID in CAID stream info --- src/webui/extjs.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/webui/extjs.c b/src/webui/extjs.c index 18edc653..b22e88c2 100644 --- a/src/webui/extjs.c +++ b/src/webui/extjs.c @@ -1041,7 +1041,7 @@ extjs_servicedetails(http_connection_t *hc, htsmsg_t *out, *streams, *c; th_transport_t *t; th_stream_t *st; - caid_t *caid; + caid_t *ca; char buf[128]; pthread_mutex_lock(&global_lock); @@ -1068,10 +1068,10 @@ extjs_servicedetails(http_connection_t *hc, case SCT_CA: buf[0] = 0; - LIST_FOREACH(caid, &st->st_caids, link) { + LIST_FOREACH(ca, &st->st_caids, link) { snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), - "%s (0x%04x) ", - psi_caid2name(caid->caid), caid->caid); + "%s (0x%04x) [0x%08x]", + psi_caid2name(ca->caid), ca->caid, ca->providerid); } htsmsg_add_str(c, "details", buf);