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:
Bernhard Amann 2013-10-17 12:24:40 -07:00
parent c1c6b887c1
commit 363cfb8506
7 changed files with 9 additions and 24 deletions

View file

@ -89,7 +89,6 @@ event bro_init()
{
local config_strings: table[string] of string = {
["query"] = "select * from conn;",
["dbname"] = "conn"
};
outfile = open("../out");

View file

@ -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");

View file

@ -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");

View file

@ -77,7 +77,6 @@ event bro_init()
{
local config_strings: table[string] of string = {
["query"] = "select * from ssh;",
["dbname"] = "ssh"
};
outfile = open("../out");