Fix a formatting error.

svn path=/trunk/; revision=39814
This commit is contained in:
Bill Meier 2011-11-12 23:03:30 +00:00
parent 29986f07ed
commit d9e9f429da
1 changed files with 5 additions and 2 deletions

View File

@ -216,10 +216,13 @@ dissect_netanalyzer_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
if (packet_status & (1 << idx))
{
if (!first)
if (first)
{
first = FALSE;
}
else
{
ep_strbuf_append(strbuf, ", ");
first = FALSE;
}
ep_strbuf_append(strbuf, msk_strings[idx]);
}