deb2494
Don't suggest to downgrade, clean up versioning (fixes #1440) - def-strtok
is thread-unsafe. I found the following occurences, I think all of them happen in a single thread so it should™ currently be fine.
```
src/engine/client/client.cpp
2269: const char p = strtok(pStr, ".");
2277: p = strtok(NULL, ".");
src/engine/client/serverbrowser.cpp
1212: p = strtok(aBuf, ",");
1223: p = strtok(NULL, ",");
1234: p = strtok(aBuf, ",");
1241: p = strtok(NULL, ",");
src/game/server/score/file_score.cpp
125: char *pTime = strtok((char) TmpCpLin...should™