* Vincent Fourmond <fourm...@gmail.com> [170908 16:18]: > Oops, looks like I completely missed the patch. > > I'll review/apply ASAP, but I need to wait until my updated key is > back in the keyring. > > Thanks for your patience,
No problem. I had prepared an almost identical patch before looking to see if there was already a bug. My patch included a change to src/pmount.c at line 365: - else if(! strcmp(fsname, "vfat") && fs->iocharset_format) { + else if((!strcmp(fsname, "vfat") || !strcmp(fsname, "exfat")) && fs->iocharset_format) { It seems to be a workaround for a bug in mount specific to vfat, so it is probably unnecessary. But I thought I would mention it, in case it jogs your memory about why that test was added. ...Marvin