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

Lowercased file extensions for Unix file system compatibility.

parent d0e740b1
No related branches found
No related tags found
No related merge requests found
......@@ -188,7 +188,7 @@ int main(int argc, char **argv)
write(file,&now,sizeof(now));
close(file); }
sprintf(str,"%s.SHD",smb.file);
sprintf(str,"%s.shd",smb.file);
if(!fexist(str)) {
printf("%s doesn't exist\n",smb.file);
return(0); }
......
......@@ -233,11 +233,11 @@ int main(int argc, char **argv)
last=0;
high=last;
sprintf(str,"%s.SHD",smb.file);
sprintf(str,"%s.shd",smb.file);
if(!fexist(str)) {
printf("%s doesn't exist\n",smb.file);
return(0); }
sprintf(str,"%s.SID",smb.file);
sprintf(str,"%s.sid",smb.file);
if(!flength(str)) {
printf("%s is empty\n",smb.file);
return(0); }
......
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