Skip to content

Commit

Permalink
statsd: increase buffer for miliseconds printing as function uses 21 …
Browse files Browse the repository at this point in the history
…size
  • Loading branch information
miconda committed Nov 2, 2016
1 parent 1f2b5af commit 511b324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/statsd/statsd.c
Expand Up @@ -107,7 +107,7 @@ static int func_set(struct sip_msg* msg, char* key, char* val)
static int func_time_start(struct sip_msg *msg, char *key)
{
int_str avp_key, avp_val;
char unix_time[20];
char unix_time[24];
get_milliseconds(unix_time);
avp_key.s.s = key;
avp_key.s.len = strlen(avp_key.s.s);
Expand Down

0 comments on commit 511b324

Please sign in to comment.