RCS file: /cvsroot/filezilla/FileZilla3/src/engine/serverpath.cpp,v
retrieving revision 1.24
diff -u -r1.24 serverpath.cpp
|
|
|
80 | 80 | m_type = VMS; |
81 | 81 | } |
82 | 82 | else if (path.Length() >= 3 && |
83 | | (path.c_str()[0] >= 'A' && path.c_str()[0] <= 'Z') || (path.c_str()[0] >= 'a' && path.c_str()[0] <= 'z') && |
| 83 | ((path.c_str()[0] >= 'A' && path.c_str()[0] <= 'Z') || (path.c_str()[0] >= 'a' && path.c_str()[0] <= 'z')) && |
84 | 84 | path.c_str()[1] == ':' && (path.c_str()[2] == '\\' || path.c_str()[2] == '/')) |
85 | 85 | m_type = DOS; |
86 | 86 | else if (path.c_str()[0] == FTP_MVS_DOUBLE_QUOTE && path.Last() == FTP_MVS_DOUBLE_QUOTE) |