Skip to content
Snippets Groups Projects
Commit 850a3293 authored by rswindell's avatar rswindell
Browse files

No longer converts filenames (in file list) to uppercase before importing.

parent e43431aa
No related branches found
No related tags found
No related merge requests found
......@@ -354,7 +354,9 @@ void addlist(char *inpath, file_t f, uint dskip, uint sskip)
if(p) *p=0;
else /* no space after filename? */
continue;
#if 0
strupr(fname);
#endif
strcpy(fname,unpadfname(fname,tmp));
padfname(fname,f.name);
......@@ -814,7 +816,9 @@ int main(int argc, char **argv)
namegiven=1;
padfname(argv[j],f.name);
f.desc[0]=0;
#if 0
strupr(f.name);
#endif
if(j+1==argc) {
printf("%s no description given.\n",f.name);
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment