From 8a76abd0c95c1ed1f40b27f862a25811b26b7f31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Wed, 9 Sep 2009 20:42:28 +0000 Subject: [PATCH] Set V4L adapters status to "- inactive -" instead of "" when not tuned to anything --- src/v4l.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v4l.c b/src/v4l.c index 963b3580..4e6a0a7d 100644 --- a/src/v4l.c +++ b/src/v4l.c @@ -545,7 +545,7 @@ v4l_adapter_build_msg(v4l_adapter_t *va) va->va_current_transport->tht_v4l_frequency); htsmsg_add_str(m, "currentMux", buf); } else { - htsmsg_add_str(m, "currentMux", ""); + htsmsg_add_str(m, "currentMux", "- inactive -"); } return m;