diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-05-22 03:34:59 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-05-22 03:34:59 +0200 |
commit | 1c8d382fac3101fbaa89950d0a19f65761b08d26 (patch) | |
tree | 8d06536b1c6cdc7dadcd3e8dd5f9d56708dd45ff /src/config.y | |
parent | 0e3407d9aa912ef6e110f3326de17744af9e0ad6 (diff) | |
download | fastd-1c8d382fac3101fbaa89950d0a19f65761b08d26.tar fastd-1c8d382fac3101fbaa89950d0a19f65761b08d26.zip |
Move fastd_loglevel_t to log.h
Diffstat (limited to 'src/config.y')
-rw-r--r-- | src/config.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.y b/src/config.y index a448a00..88d6f53 100644 --- a/src/config.y +++ b/src/config.y @@ -277,7 +277,7 @@ hide: TOK_IP TOK_ADDRESSES boolean { maybe_log_level: TOK_LEVEL log_level { $$ = $2; } - | { $$ = FASTD_DEFAULT_LOG_LEVEL; } + | { $$ = LL_DEFAULT; } ; log_level: TOK_FATAL { $$ = LL_FATAL; } |