forked from github/server
fix problems with passwords > 15 characters
This commit is contained in:
parent
069a94f830
commit
7d9280b463
|
@ -274,7 +274,7 @@ static void handle_unit(void *userData, int no) {
|
|||
static void handle_order(void *userData, const char *str) {
|
||||
parser_state *state = (parser_state *)userData;
|
||||
const char * tok, *input = str;
|
||||
char buffer[16];
|
||||
char buffer[64];
|
||||
const struct locale *lang;
|
||||
param_t p;
|
||||
faction * f = state->f;
|
||||
|
|
Loading…
Reference in New Issue