(svn r12957) -Codechange: do not misuse snprintf when you just want to copy a string, also use DEBUG instead of fprintf in one case.

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
rubidium 17 years ago
parent 0eab2c07c2
commit f200fc3b99

@ -934,7 +934,7 @@ make_cflags_and_ldflags() {
fi
if [ $cc_version -ge 30 ]; then
CFLAGS="$CFLAGS -W -Wno-unused-parameter"
CFLAGS="$CFLAGS -W -Wno-unused-parameter -Wformat=2"
fi
if [ $cc_version -ge 34 ]; then

@ -82,10 +82,10 @@ void HashCurrentCompanyPassword()
if (StrEmpty(_network_player_info[_local_player].password)) return;
_password_game_seed = _patches.generation_seed;
snprintf(_password_server_unique_id, sizeof(_password_server_unique_id), _network_unique_id);
ttd_strlcpy(_password_server_unique_id, _network_unique_id, sizeof(_password_server_unique_id));
const char *new_pw = GenerateCompanyPasswordHash(_network_player_info[_local_player].password);
snprintf(_network_player_info[_local_player].password, sizeof(_network_player_info[_local_player].password), new_pw);
ttd_strlcpy(_network_player_info[_local_player].password, new_pw, sizeof(_network_player_info[_local_player].password));
}

@ -1580,7 +1580,7 @@ static SaveOrLoadResult SaveFileToDisk(bool threaded)
if (_sl.excpt_uninit != NULL) _sl.excpt_uninit();
ShowInfo(GetSaveLoadErrorString());
fprintf(stderr, GetSaveLoadErrorString());
DEBUG(sl, 0, GetSaveLoadErrorString());
if (threaded) {
SetAsyncSaveFinish(SaveFileError);

Loading…
Cancel
Save