diff options
author | Brian Havard <bjh@apache.org> | 2001-09-02 05:10:41 +0000 |
---|---|---|
committer | Brian Havard <bjh@apache.org> | 2001-09-02 05:10:41 +0000 |
commit | c5958e8b535c326e0f8fa43a4521da67e027747c (patch) | |
tree | dff8a4146cfc5e3edd21c5d47cb421a938272e93 /file_io/os2/filesys.c | |
parent | 72e0537ddc1f4d8a34839725cabc0f6e35c7e533 (diff) | |
download | apr-c5958e8b535c326e0f8fa43a4521da67e027747c.tar.gz apr-c5958e8b535c326e0f8fa43a4521da67e027747c.zip |
A couple of fixes for the c_is_fnchar map
- " was off by 1
- / should be 0
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62279 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/os2/filesys.c')
-rw-r--r-- | file_io/os2/filesys.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/file_io/os2/filesys.c b/file_io/os2/filesys.c index 5783a4a77..af55fbe8d 100644 --- a/file_io/os2/filesys.c +++ b/file_io/os2/filesys.c @@ -72,13 +72,13 @@ const char c_is_fnchar[256] = {/* Reject all ctrl codes... */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - /* " * / : < > ? */ - 1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,0,1,0,1,0,0, + /* " * / : < > ? */ + 1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,0, 1,1,1,1,1,1,1,1,1,1,0,1,0,1,0,0, /* \ */ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1, - /* : | */ + /* | */ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1, - /* High bit codes are accepted (subject to utf-8->Unicode xlation) */ + /* High bit codes are accepted */ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, |