(svn r1458) -Fix: remove byte *s again for windows.

pull/155/head
darkvater 20 years ago
parent e661657d0c
commit c07e643b59

@ -774,7 +774,6 @@ static bool FileMD5(const MD5File file, bool warn)
{
FILE *f;
char buf[MAX_PATH];
byte *s;
md5_state_t filemd5state;
int len=0;
@ -786,8 +785,9 @@ static bool FileMD5(const MD5File file, bool warn)
#if !defined(WIN32)
if (f == NULL) {
byte *s;
// make lower case and check again
for (s=buf + strlen(_path.data_dir) - 1; *s != 0; s++)
for (s = buf + strlen(_path.data_dir) - 1; *s != 0; s++)
*s = tolower(*s);
f = fopen(buf, "rb");
}

Loading…
Cancel
Save