Fixed: Set process name (fixes the <Unknown> under Linux and OS X)

--HG--
branch : develop
This commit is contained in:
kervala 2015-12-28 18:13:37 +01:00
parent 19cbbb2bec
commit 4c0fc6074f

View file

@ -545,6 +545,9 @@ int main(int argc, char **argv)
strcpy(filename, argv[0]);
// set process name for logs
CLog::setProcessName(filename);
// ignore signal SIGPIPE generated by libwww
signal(SIGPIPE, sigHandler);