mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-19 21:25:30 +00:00
handle -pidfile parameter correctly
This commit is contained in:
parent
81b2f2114d
commit
7f08bbe938
@ -83,7 +83,7 @@ namespace i2p
|
|||||||
|
|
||||||
// Pidfile
|
// Pidfile
|
||||||
// this code is c-styled and a bit ugly, but we need fd for locking pidfile
|
// this code is c-styled and a bit ugly, but we need fd for locking pidfile
|
||||||
pidfile = i2p::util::config::GetArg("pidfile", "");
|
pidfile = i2p::util::config::GetArg("-pidfile", "");
|
||||||
if (pidfile != "") {
|
if (pidfile != "") {
|
||||||
pidFH = open(pidfile.c_str(), O_RDWR | O_CREAT, 0600);
|
pidFH = open(pidfile.c_str(), O_RDWR | O_CREAT, 0600);
|
||||||
if (pidFH < 0)
|
if (pidFH < 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user