macht folgender Patch, und dessen sinngemäße globale Anwendung, Sinn?
Code: Alles auswählen
--- apps/tuxbox/neutrino/src/neutrino.cpp 2009-10-03 19:53:40.000000000 +0200
+++ apps/tuxbox/neutrino/src/neutrino.cpp 2009-10-03 21:28:20.000000000 +0200
@@ -171,10 +172,10 @@
if (false == blocking)
command += " &";
if (verbose)
- printf("[neutrino] executing %s\n", command.c_str());
+ printf("[%s] executing %s\n", __FILE__, command.c_str());
int result = system(command.c_str());
if (result !=0 ) {
- printf("[neutrino] %s failed with return code = %d...\n", filename, WEXITSTATUS(result));
+ printf("[%s] %s failed with return code = %d...\n", __FILE__, filename, WEXITSTATUS(result));
return false;
}
}