d'oh, still have a (deprecated) string_array rather than string_vector

This commit is contained in:
Vern Paxson 2018-07-26 14:35:57 -07:00
parent 2375c0c4be
commit f7358a3351

View file

@ -100,7 +100,7 @@ function find_ip_addresses(input: string): string_array &deprecated
for ( i in parts )
{
if ( i % 2 == 1 && is_valid_ip(parts[i]) )
output += parts[i];
output[|output|] += parts[i];
}
return output;
}