A little change to the .flo format

This commit is contained in:
Michiel Broek
2004-07-11 15:22:04 +00:00
parent 715932fe49
commit 2e63f8d3d3
2 changed files with 11 additions and 3 deletions

View File

@@ -78,11 +78,11 @@ int attach(faddr noden, char *ofile, int mode, char flavor)
case LEAVE:
if (strlen(CFG.dospath)) {
if (CFG.leavecase)
sprintf(thefile, "%s", Unix2Dos(ofile));
sprintf(thefile, "@%s", Unix2Dos(ofile));
else
sprintf(thefile, "%s", tu(Unix2Dos(ofile)));
sprintf(thefile, "@%s", tu(Unix2Dos(ofile)));
} else {
sprintf(thefile, "%s", ofile);
sprintf(thefile, "@%s", ofile);
}
break;