diff options
author | Kamran Riaz Khan <krkhan@inspirated.com> | 2011-12-04 21:33:20 +0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-12-22 10:17:48 -0500 |
commit | a1c1fc72d17e0327093a63f20e56292cbac0cf39 (patch) | |
tree | 0b4915e8deed9c3fc68da1c77259158f53ebae3b /src/common/compat.h | |
parent | 878a684386cd4f7570bbc221fdfccdf005611c34 (diff) | |
download | tor-a1c1fc72d17e0327093a63f20e56292cbac0cf39.tar.gz tor-a1c1fc72d17e0327093a63f20e56292cbac0cf39.zip |
Prepend cwd for relative config file paths.
Modifies filenames which do not start with '/' or '.' on non-Windows
platforms; uses _fullpath on Windows.
Diffstat (limited to 'src/common/compat.h')
-rw-r--r-- | src/common/compat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/compat.h b/src/common/compat.h index a228a46cf8..1394717882 100644 --- a/src/common/compat.h +++ b/src/common/compat.h @@ -571,6 +571,7 @@ char *get_user_homedir(const char *username); #endif int get_parent_directory(char *fname); +char *make_path_absolute(char *fname); int spawn_func(void (*func)(void *), void *data); void spawn_exit(void) ATTR_NORETURN; |