mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 07:22:57 +02:00
controlapi: use "CST" instead of "Coolstream" ...
because I don't know the current legal situation.
Origin commit data
------------------
Branch: ni/coolstream
Commit: 9e5c30f754
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-03-19 (Sun, 19 Mar 2017)
Origin message was:
------------------
- controlapi: use "CST" instead of "Coolstream" ...
because I don't know the current legal situation.
------------------
This commit was generated by Migit
This commit is contained in:
@@ -810,7 +810,15 @@ void CControlAPI::HWInfoCGI(CyhookHandler *hh)
|
||||
std::string eth_id = netadapter.getMacAddr();
|
||||
std::transform(eth_id.begin(), eth_id.end(), eth_id.begin(), ::tolower);
|
||||
|
||||
hh->printf("%s %s (%s)\nMAC:%s\n", g_info.hw_caps->boxvendor, g_info.hw_caps->boxname, g_info.hw_caps->boxarch, eth_id.c_str());
|
||||
std::string boxvendor(g_info.hw_caps->boxvendor);
|
||||
/*
|
||||
I don't know the current legal situation.
|
||||
So better let's change the vendor's name to CST.
|
||||
*/
|
||||
if (boxvendor.compare("Coolstream") == 0)
|
||||
boxvendor = "CST";
|
||||
|
||||
hh->printf("%s %s (%s)\nMAC:%s\n", boxvendor.c_str(), g_info.hw_caps->boxname, g_info.hw_caps->boxarch, eth_id.c_str());
|
||||
}
|
||||
//-----------------------------------------------------------------------------
|
||||
void CControlAPI::ShutdownCGI(CyhookHandler *hh)
|
||||
|
Reference in New Issue
Block a user