mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 02:44:15 +00:00
* fix warnings from -Wunused-result
This commit is contained in:
parent
e4255ed712
commit
a3c6ed4dd2
@ -66,7 +66,11 @@ namespace i2p
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
std::string d(i2p::util::filesystem::GetDataDir().string ()); // make a copy
|
std::string d(i2p::util::filesystem::GetDataDir().string ()); // make a copy
|
||||||
chdir(d.c_str());
|
if (chdir(d.c_str()) != 0)
|
||||||
|
{
|
||||||
|
LogPrint(eLogError, "Daemon: could not chdir: ", strerror(errno));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// close stdin/stdout/stderr descriptors
|
// close stdin/stdout/stderr descriptors
|
||||||
::close (0);
|
::close (0);
|
||||||
@ -95,7 +99,11 @@ namespace i2p
|
|||||||
char pid[10];
|
char pid[10];
|
||||||
sprintf(pid, "%d\n", getpid());
|
sprintf(pid, "%d\n", getpid());
|
||||||
ftruncate(pidFH, 0);
|
ftruncate(pidFH, 0);
|
||||||
write(pidFH, pid, strlen(pid));
|
if (write(pidFH, pid, strlen(pid)) < 0)
|
||||||
|
{
|
||||||
|
LogPrint(eLogError, "Daemon: could not write pidfile: ", strerror(errno));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Signal handler
|
// Signal handler
|
||||||
|
Loading…
x
Reference in New Issue
Block a user