diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-04-11 13:35:28 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-04-11 13:35:28 +0000 |
commit | ecdddd674f2ffad16eaa01a68c9c91ff3b355b3f (patch) | |
tree | f6d1237efb1b9c62663c9d915d5ca42f548b306c | |
parent | 128bec2071d640c775b58322256ac6bb03363741 (diff) | |
download | samba-ecdddd674f2ffad16eaa01a68c9c91ff3b355b3f.tar.gz samba-ecdddd674f2ffad16eaa01a68c9c91ff3b355b3f.tar.xz samba-ecdddd674f2ffad16eaa01a68c9c91ff3b355b3f.zip |
don't treat '.' as FLAG_ASCII, instead handle it separately
-rw-r--r-- | source/smbd/mangle_hash2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/smbd/mangle_hash2.c b/source/smbd/mangle_hash2.c index 0bd538d2f43..8b4b0f478d9 100644 --- a/source/smbd/mangle_hash2.c +++ b/source/smbd/mangle_hash2.c @@ -283,7 +283,7 @@ static BOOL is_8_3(const char *name, BOOL check_case) /* the length are all OK. Now check to see if the characters themselves are OK */ for (i=0; name[i]; i++) { /* note that we allow wildcard petterns! */ - if (!FLAG_CHECK(name[i], FLAG_ASCII|FLAG_WILDCARD)) { + if (!FLAG_CHECK(name[i], FLAG_ASCII|FLAG_WILDCARD) && name[i] != '.') { return False; } } @@ -513,7 +513,7 @@ static void init_tables(void) (i >= 'A' && i <= 'Z')) { char_flags[i] |= (FLAG_ASCII | FLAG_BASECHAR); } - if (strchr("._-$~", i)) { + if (strchr("_-$~", i)) { char_flags[i] |= FLAG_ASCII; } |