Commit 6807b76a authored by Nick Mathewson's avatar Nick Mathewson 🤹
Browse files

Add missing rename function for non-linux platforms

parent 71eaebd9
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1625,5 +1625,12 @@ sandbox_cfg_allow_stat_filename_array(sandbox_cfg_t **cfg, ...)
  (void)cfg;
  return 0;
}

int
sandbox_cfg_allow_rename(sandbox_cfg_t **cfg, char *file1, char *file2)
{
  (void)cfg; (void)file1; (void)file2;
  return 0;
}
#endif