mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 14:23:30 +01:00
Adjust windows stubs for new start/finish_daemon() return types
This commit is contained in:
parent
a57c27a1c7
commit
e56f0c9d33
@ -157,13 +157,15 @@ finish_daemon(const char *desired_cwd)
|
||||
}
|
||||
#else /* !(!defined(_WIN32)) */
|
||||
/* defined(_WIN32) */
|
||||
void
|
||||
int
|
||||
start_daemon(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
void
|
||||
int
|
||||
finish_daemon(const char *cp)
|
||||
{
|
||||
(void)cp;
|
||||
return 0;
|
||||
}
|
||||
#endif /* !defined(_WIN32) */
|
||||
|
Loading…
Reference in New Issue
Block a user