# HG changeset patch # User Sebastien Decugis # Date 1384154048 -28800 # Node ID 24a03140a6aa1e46aa95429f78927e90db1664b1 # Parent 7c5f662c4eeff8fd09a9423bab8acc4f42be9c35 Bug: parameters for peers were not taken into account diff -r 7c5f662c4eef -r 24a03140a6aa extensions/dbg_msg_dumps/dbg_msg_dumps.c --- a/extensions/dbg_msg_dumps/dbg_msg_dumps.c Mon Nov 11 14:55:10 2013 +0800 +++ b/extensions/dbg_msg_dumps/dbg_msg_dumps.c Mon Nov 11 15:14:08 2013 +0800 @@ -286,7 +286,7 @@ if (conffile != NULL) { char * endp; - dump_level = (uint8_t)strtoul(conffile, &endp, 16); + dump_level = (uint32_t)strtoul(conffile, &endp, 16); CHECK_PARAMS_DO( *endp == '\0', { LOG_E("Configuration parameter must be in the form \"0xNNNN\""); return EINVAL; });