diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-03-03 08:34:56 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-03-03 08:34:56 +0100 |
commit | ff78f87f9b2aae9a5e2e88612fb0c07061919d11 (patch) | |
tree | 6e402cf2a8a6bb027dd217b806d7d6254b399071 /src/config.c | |
parent | be28b733d8539b5d9f6077f4470e06843226b515 (diff) | |
download | fastd-ff78f87f9b2aae9a5e2e88612fb0c07061919d11.tar fastd-ff78f87f9b2aae9a5e2e88612fb0c07061919d11.zip |
Fix typo in --log-level help text
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c index f51e066..b0ad607 100644 --- a/src/config.c +++ b/src/config.c @@ -532,7 +532,7 @@ static void count_peers(fastd_context_t *ctx, fastd_config_t *conf) { OPTION_ARG(option_user, "--user", "<user>", "Sets the user to run fastd as") \ OPTION_ARG(option_group, "--group", "<group>", "Sets the group to run fastd as") \ OPTION_ARG(option_pid_file, "--pid-file", "<filename>", "Writes fastd's PID to the specified file") \ - OPTION_ARG(option_log_level, "--log-level", "error|warn|info|verbose|debug", "Sets the stderr log level; default is info, if no alternative log destination ist configured") \ + OPTION_ARG(option_log_level, "--log-level", "error|warn|info|verbose|debug", "Sets the stderr log level; default is info, if no alternative log destination is configured") \ OPTION_ARG(option_syslog_level, "--syslog-level", "error|warn|info|verbose|debug", "Sets the log level for syslog output; default is not to use syslog") \ OPTION_ARG(option_syslog_ident, "--syslog-ident", "<ident>", "Sets the syslog identification; default is 'fastd'") \ OPTION_ARG(option_config, "--config" OR "-c", "<filename>", "Loads a config file") \ |