mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
rename the dbname configuration option to tablename.
Sorry for this - I noticed that I named this option quite unfortunately while writing the documentation. The patch also removes the dbname configuration option from the sqlite input reader - it was not used there at all anymore (and I did not notice that).
This commit is contained in:
parent
c1c6b887c1
commit
363cfb8506
7 changed files with 9 additions and 24 deletions
|
@ -89,7 +89,6 @@ event bro_init()
|
|||
{
|
||||
local config_strings: table[string] of string = {
|
||||
["query"] = "select * from conn;",
|
||||
["dbname"] = "conn"
|
||||
};
|
||||
|
||||
outfile = open("../out");
|
||||
|
|
|
@ -83,12 +83,10 @@ event bro_init()
|
|||
{
|
||||
local config_strings: table[string] of string = {
|
||||
["query"] = "select * from ssh;",
|
||||
["dbname"] = "ssh"
|
||||
};
|
||||
|
||||
local config_strings2: table[string] of string = {
|
||||
["query"] = "select b, g, h from ssh;",
|
||||
["dbname"] = "ssh"
|
||||
};
|
||||
|
||||
outfile = open("../out");
|
||||
|
|
|
@ -39,7 +39,6 @@ event bro_init()
|
|||
{
|
||||
local config_strings: table[string] of string = {
|
||||
["query"] = "select port as p, proto from port;",
|
||||
["dbname"] = "port"
|
||||
};
|
||||
|
||||
outfile = open("../out");
|
||||
|
|
|
@ -77,7 +77,6 @@ event bro_init()
|
|||
{
|
||||
local config_strings: table[string] of string = {
|
||||
["query"] = "select * from ssh;",
|
||||
["dbname"] = "ssh"
|
||||
};
|
||||
|
||||
outfile = open("../out");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue