mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Repair build when no sandbox support is enabled.
This commit is contained in:
parent
ca8423a703
commit
7123e9706e
@ -1884,6 +1884,21 @@ sandbox_cfg_allow_stat_filename(sandbox_cfg_t **cfg, char *file)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
sandbox_cfg_allow_chown_filename(sandbox_cfg_t **cfg, char *file)
|
||||
{
|
||||
(void)cfg; (void)file;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
sandbox_cfg_allow_chmod_filename(sandbox_cfg_t **cfg, char *file)
|
||||
{
|
||||
(void)cfg; (void)file;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
sandbox_cfg_allow_rename(sandbox_cfg_t **cfg, char *file1, char *file2)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user