Merge branch 'badgerman-hotfix-3.4.1'

This commit is contained in:
Enno Rehling 2015-02-08 10:51:52 +01:00
commit aa950b6b50
4 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,3 @@
#define VERSION_MAJOR 3
#define VERSION_MINOR 4
#define VERSION_BUILD 0
#define VERSION_BUILD 1

View File

@ -1896,7 +1896,10 @@ int name_cmd(struct unit *u, struct order *ord)
}
if (s != NULL) {
return rename_cmd(u, ord, s, getstrtoken());
const char *name = getstrtoken();
if (name) {
rename_cmd(u, ord, s, name);
}
}
return 0;

View File

@ -240,7 +240,7 @@ const message_type *register_msg(const char *type, int n_param, ...) {
void assert_messages(struct CuTest * tc, struct mlist *msglist, const message_type **types,
int num_msgs, bool exact_match, ...) {
va_list args;
int found = 0, argc = 0;
int found, argc = -1;
struct message *msg;
bool match = true;

View File

@ -263,6 +263,7 @@ void init_translations(const struct locale *lang, int ut, const char * (*string_
assert(maxstrings > 0);
tokens = get_translations(lang, ut);
for (i = 0; i != maxstrings; ++i) {
// TODO: swap the name of s and key
const char * s = string_cb(i);
const char * key = s ? locale_string(lang, s, false) : 0;
key = key ? key : s;