Merge branch 'master' into topic/jsiwek/doc-framework

This commit is contained in:
Jon Siwek 2011-05-04 19:38:03 -05:00
commit 481a1d097b
10 changed files with 47 additions and 66 deletions

View file

@ -114,9 +114,9 @@ function modify()
foo15 = 6667/tcp;
foo16[4] = 4;
foo16[2] = 20;
++foo16[1];
foo16[3] = 4;
foo16[1] = 20;
++foo16[0];
local x: type1;
x$a = "pop";

View file

@ -18,8 +18,8 @@ event bro_init()
local v: vector of string;
v[2] = "2";
v[5] = "5";
v[1] = "2";
v[4] = "5";
Log::write(SSH, [$vec=v]);
}