omit charset from en_US.UTF-8 env variable when picking i18n strings
This commit is contained in:
parent
63c6654c0f
commit
f36fe8c22c
@ -487,7 +487,8 @@ TALER_JSON_spec_i18n_string (const char *name,
|
|||||||
.size_ptr = NULL
|
.size_ptr = NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
ctx->lp = GNUNET_strdup (language_pattern);
|
ctx->lp = (NULL != language_pattern) ? GNUNET_strdup (language_pattern) :
|
||||||
|
NULL;
|
||||||
ctx->field = name;
|
ctx->field = name;
|
||||||
*strptr = NULL;
|
*strptr = NULL;
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user