Skip to content

Commit

Permalink
Minor fixes in log output of mythtv-setup channelscan.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmdewaal committed Oct 9, 2019
1 parent cacc8ad commit bc221ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythtv/channelscan/channelimporter.cpp
Expand Up @@ -70,9 +70,9 @@ void ChannelImporter::Process(const ScanDTVTransportList &_transports,
cout << endl << "Scan parameters:" << endl;
bool require_av = (m_service_requirements & kRequireAV) == kRequireAV;
bool require_a = (m_service_requirements & kRequireAudio) != 0;
cout << "Desired Services : " << (require_av ? "tv" : require_a ? "radio" : "all") << endl;
cout << "Desired Services : " << (require_av ? "tv" : require_a ? "tv+radio" : "all") << endl;
cout << "Unencrypted Only : " << (m_fta_only ? "yes" : "no") << endl;
cout << "Logical Channel Numbers : " << (m_lcn_only ? "yes" : "no") << endl;
cout << "Logical Channel Numbers only: " << (m_lcn_only ? "yes" : "no") << endl;
cout << "Complete scan data required : " << (m_complete_only ? "yes" : "no") << endl;
cout << "Full search for old channels: " << (m_full_channel_search ? "yes" : "no") << endl;
}
Expand Down

0 comments on commit bc221ec

Please sign in to comment.