diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-10-22 23:16:01 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-10-22 23:16:01 +0000 |
commit | 898959665cd844e874e6960a55e959d3b088f841 (patch) | |
tree | ba70b7f262878bd13403f5c5f440e0f4be5e85f5 /epan/filesystem.h | |
parent | e4db9c4b6440c4f34c67f670b0517b7eed269063 (diff) | |
download | wireshark-898959665cd844e874e6960a55e959d3b088f841.tar.gz wireshark-898959665cd844e874e6960a55e959d3b088f841.tar.bz2 wireshark-898959665cd844e874e6960a55e959d3b088f841.zip |
The only reason we care about the user's home directory is that their
".ethereal" directory is under it; get rid of "get_home_dir()", and put
its code inside "get_persconffile_dir()". (The personal configuration
file directory may move, on Windows, to the user's profile directory.)
svn path=/trunk/; revision=4062
Diffstat (limited to 'epan/filesystem.h')
-rw-r--r-- | epan/filesystem.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/epan/filesystem.h b/epan/filesystem.h index 20c459e6e7..a0956dbb69 100644 --- a/epan/filesystem.h +++ b/epan/filesystem.h @@ -1,7 +1,7 @@ /* filesystem.h * Filesystem utility definitions * - * $Id: filesystem.h,v 1.6 2001/10/22 22:59:25 guy Exp $ + * $Id: filesystem.h,v 1.7 2001/10/22 23:16:01 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -71,12 +71,8 @@ const char *get_datafile_dir(void); */ const char *get_systemfile_dir(void); -/* Returns the user's home directory, via the HOME environment - * variable, or a default directory if HOME is not set */ -const char* get_home_dir(void); - /* - * Get the directory in which personal configuration files reside. + * Get the directory in which personal configuration files are stored. */ const char *get_persconffile_dir(void); |