Change Log: files/dos_fs.c ccrayne@crayne.org Fixed bug in DOSFS_ToFCBFormat which caused "*" to parse as "*." instead of as "*.*" --- files/dos_fs.c.20011226 Sun Jan 13 18:19:03 2002 +++ files/dos_fs.c Sun Jan 13 18:30:14 2002 @@ -215,7 +215,7 @@ if (*p == '*') { /* Skip all chars after wildcard up to first dot */ - while (*p && (*p != '/') && (*p != '\\') && (*p != '.')) p++; + if(*(p+1)) while (*p && (*p != '/') && (*p != '\\') && (*p != '.')) p++; } else {