mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 16:18:19 +00:00
Documentation fixes.
BIT-1272 #close
This commit is contained in:
parent
7ef1409b40
commit
191e5da74d
6 changed files with 9 additions and 5 deletions
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
||||||
|
|
||||||
|
2.3-234 | 2014-10-14 14:42:09 -0500
|
||||||
|
|
||||||
|
* Documentation fixes. (Steve Smoot)
|
||||||
|
|
||||||
2.3-233 | 2014-10-09 16:00:27 -0500
|
2.3-233 | 2014-10-09 16:00:27 -0500
|
||||||
|
|
||||||
* Change find-bro-logs unit test to follow symlinks. (Jon Siwek)
|
* Change find-bro-logs unit test to follow symlinks. (Jon Siwek)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.3-233
|
2.3-234
|
||||||
|
|
|
@ -10,6 +10,6 @@ event bro_init()
|
||||||
|
|
||||||
print fmt("contents of v1: %s", v1);
|
print fmt("contents of v1: %s", v1);
|
||||||
print fmt("length of v1: %d", |v1|);
|
print fmt("length of v1: %d", |v1|);
|
||||||
print fmt("contents of v1: %s", v2);
|
print fmt("contents of v2: %s", v2);
|
||||||
print fmt("length of v2: %d", |v2|);
|
print fmt("length of v2: %d", |v2|);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
event bro_init()
|
event bro_init()
|
||||||
{
|
{
|
||||||
local test_string = "The quick brown fox jumped over the lazy dog.";
|
local test_string = "The quick brown fox jumps over the lazy dog.";
|
||||||
local test_pattern = /quick|lazy/;
|
local test_pattern = /quick|lazy/;
|
||||||
|
|
||||||
if ( test_pattern in test_string )
|
if ( test_pattern in test_string )
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
# bro data_struct_vector_declaration.bro
|
# bro data_struct_vector_declaration.bro
|
||||||
contents of v1: [1, 2, 3, 4]
|
contents of v1: [1, 2, 3, 4]
|
||||||
length of v1: 4
|
length of v1: 4
|
||||||
contents of v1: [1, 2, 3, 4]
|
contents of v2: [1, 2, 3, 4]
|
||||||
length of v2: 4
|
length of v2: 4
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,6 @@
|
||||||
|
|
||||||
# bro data_type_pattern_01.bro
|
# bro data_type_pattern_01.bro
|
||||||
The
|
The
|
||||||
brown fox jumped over the
|
brown fox jumps over the
|
||||||
dog.
|
dog.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue