> I have a quick question about these support modules.  The first is a
> bug which appears to be in hostfsfiler - I can't open any files which
> contain a slash (on the RISC OS side; a dot on the Amiga side). 
> SnoopDOS is not reporting that ArcEm is even attempting to read the
> file, and nothing appears in ArcEm's output either, yet RISC OS gives
> an error message.  Please can somebody check this on another platform
> and see if it happens there as well.

There is a bug in hostfs_path_scan where an excess . <-> / conversion is
done, and the RISC OS form of the filename is compared with the actual file
name. I fixed this in RPCemu, just put the following in between the
hostfs_read_object_info and strcasecmp calls :
        for (c=0;c<strlen(ro_leaf);c++)
        {
                if (ro_leaf[c]=='/')
                   ro_leaf[c]='.';
        }
or something along those lines.

Tom


                
___________________________________________________________ 
Yahoo! Photos – NEW, now offering a quality print service from just 8p a photo 
http://uk.photos.yahoo.com


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
arcem-devel mailing list
arcem-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/arcem-devel

Reply via email to