remove scary error, update docs a bit

This commit is contained in:
bert hubert 2022-09-05 17:08:46 +02:00
parent 2a789cbdf3
commit 9eb0527eee
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ To then start the noise, enter:
``` ```
sudo tcpdump -nql | teller sudo tcpdump -nql | teller
``` ```
And it should work. For the last command, it will again ask you to enter your And it should work. For the last command, it may also again ask you to enter your
password. password.
## How to compile ## How to compile

View File

@ -77,7 +77,7 @@ int main(int argc, char** argv)
} }
catch (const toml::parse_error& err) catch (const toml::parse_error& err)
{ {
std::cerr << "Parsing failed:\n" << err << "\n"; std::cerr << "Could not read configuration files, using built-in defaults" <<endl;
trackertbl = toml::parse(trackerstoml); trackertbl = toml::parse(trackerstoml);
conftbl = toml::parse(tellertoml); conftbl = toml::parse(tellertoml);
} }