diff options
author | lns <matzeton@googlemail.com> | 2018-08-26 16:01:18 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2019-02-04 01:52:06 +0100 |
commit | f68988980d72d837f49451068b98bc96d1a548fc (patch) | |
tree | 557f91ecac2d94afa737c25b5cb81dc1eaebfc5e /src/main.c | |
parent | e7b96666c03f1536fa89149204b363951523560e (diff) |
Introduced the protocol->jail binary packet.feature/jail_packet
We are using a handler/callback functions
to obtain additional information from the
protocol handler and transmit it to the sandbox.
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -349,7 +349,7 @@ int main(int argc, char *argv[]) if (getopt_used(OPT_LOGLEVEL)) { value = getopt_str(OPT_LOGLEVEL); if (!strcasecmp(value, "debug")) - log_prio = DEBUG; + log_prio = LP_DEBUG; else if (!strcasecmp(value, "protocol")) log_prio = PROTOCOL; else if (!strcasecmp(value, "notice")) |