From ce934e49744bca890e00ad3d39c943db429c7f68 Mon Sep 17 00:00:00 2001 From: Matej Pjafjar Date: Wed, 10 Jul 2002 10:11:13 +0000 Subject: [PATCH] Bugfix - the list of valid characters in a filename didn't include an n . svn:r33 --- src/common/config.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 { -- 2.47.3