[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[or-cvs] Bugfix - the list of valid characters in a filename didn"t ...
Update of /home/or/cvsroot/src/common
In directory moria.seul.org:/tmp/cvs-serv27084
Modified Files:
config.h
Log Message:
Bugfix - the list of valid characters in a filename didn't include an n .
Index: config.h
===================================================================
RCS file: /home/or/cvsroot/src/common/config.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- config.h 3 Jul 2002 16:31:22 -0000 1.2
+++ config.h 10 Jul 2002 10:11:13 -0000 1.3
@@ -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
{