Merge branch 'master' of ssh://git.bro-ids.org/bro

This commit is contained in:
Seth Hall 2011-07-08 01:46:01 -04:00
commit 8bb240af99
35 changed files with 243 additions and 101 deletions

View file

@ -364,7 +364,7 @@ char* uitoa_n(uint64 value, char* str, int n, int base, const char* prefix)
i += strlen(prefix);
}
if ( i >= n )
if ( i >= n - 1 )
return str;
v = value;