dossrv: make dos 8+3 filenames lowercase
This commit is contained in:
parent
2e3eb536ae
commit
fa49f7e3ff
1 changed files with 2 additions and 2 deletions
|
@ -1116,7 +1116,7 @@ getname(char *p, Dosdir *d)
|
|||
break;
|
||||
if(i == 0 && c == 0x05)
|
||||
c = 0xe5;
|
||||
*p++ = c;
|
||||
*p++ = tolower(c);
|
||||
}
|
||||
for(i=0; i<3; i++){
|
||||
c = d->ext[i];
|
||||
|
@ -1124,7 +1124,7 @@ getname(char *p, Dosdir *d)
|
|||
break;
|
||||
if(i == 0)
|
||||
*p++ = '.';
|
||||
*p++ = c;
|
||||
*p++ = tolower(c);
|
||||
}
|
||||
*p = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue