From 841d1172a0098693dfc6ad71ffed4ae82bd912e5 Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Mon, 3 Oct 2016 14:46:40 +1000 Subject: [PATCH] * client.c : fix type of log message --- src/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.c b/src/client.c index e5bf982..a408dc3 100644 --- a/src/client.c +++ b/src/client.c @@ -48,7 +48,7 @@ handle_cmd(const char *line) { f2b_cmd_help(); return EXIT_SUCCESS; } else if (cmsg.type == CMD_NONE) { - f2b_log_msg(log_warn, "unable to parse command line"); + f2b_log_msg(log_error, "unable to parse command line"); return EXIT_FAILURE; } /* fill other fields */