diff options
author | Matej Pjafjar <badbytes@freehaven.net> | 2002-07-10 10:11:13 +0000 |
---|---|---|
committer | Matej Pjafjar <badbytes@freehaven.net> | 2002-07-10 10:11:13 +0000 |
commit | ce934e49744bca890e00ad3d39c943db429c7f68 (patch) | |
tree | cedebccd7025d786aef37abdb8567d4c4b29bb99 /src/common | |
parent | 934ca320ff6826f541e3f0b5b10abb55b7976cfd (diff) | |
download | tor-ce934e49744bca890e00ad3d39c943db429c7f68.tar.gz tor-ce934e49744bca890e00ad3d39c943db429c7f68.zip |
Bugfix - the list of valid characters in a filename didn't include an n .
svn:r33
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/config.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/config.h b/src/common/config.h index 7642086b1f..8c70c34c2e 100644 --- a/src/common/config.h +++ b/src/common/config.h @@ -8,6 +8,9 @@ /* * Changes : * $Log$ + * Revision 1.3 2002/07/10 10:11:13 badbytes + * Bugfix - the list of valid characters in a filename didn't include an n . + * * Revision 1.2 2002/07/03 16:31:22 montrose * Added getoptions() and made minor adjustment to poptReadDefaultOptions() * @@ -58,7 +61,7 @@ #define CONFIG_VALUE_MAXLEN 255 /* legal characters in a filename */ -#define CONFIG_LEGAL_FILENAME_CHARACTERS "abcdefghijklmopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_/" +#define CONFIG_LEGAL_FILENAME_CHARACTERS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_/" typedef struct { |