From 5d0356a75e81cbf254bd7d4930ae542921c8dd87 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Fri, 17 Oct 2014 13:05:44 +0200 Subject: [PATCH] sources: fix reported normal select option --- sources.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources.c b/sources.c index 6606e7b..1109f12 100644 --- a/sources.c +++ b/sources.c @@ -1181,7 +1181,7 @@ SRC_ReportSource(int index, RPT_SourceReport *report, struct timeval *now) switch (src->sel_option) { case SRC_SelectNormal: - report->sel_option = RPT_NOSELECT; + report->sel_option = RPT_NORMAL; break; case SRC_SelectPrefer: report->sel_option = RPT_PREFER;