There some incompatibility with mingw and cygwin, the format specifiers are different because it uses the old ms vc runtime.
The only problem I encountered is that you cannot connect to any private server.
The only problem I encountered is that you cannot connect to any private server.
[SELECT ALL] Code:
In the function:
genpwdhash(const char *name, const char *pwd, int salt)
formatstring(temp)("%llx %llx %llx", hash.chunks[0], hash.chunks[1], hash.chunks[2]);
should be:
formatstring(temp)("%I64x %I64x %I64x", hash.chunks[0], hash.chunks[1], hash.chunks[2]);