Browse Source

* client.c : fix type of log message

master
Alex 'AdUser' Z 8 years ago
parent
commit
841d1172a0
  1. 2
      src/client.c

2
src/client.c

@ -48,7 +48,7 @@ handle_cmd(const char *line) {
f2b_cmd_help(); f2b_cmd_help();
return EXIT_SUCCESS; return EXIT_SUCCESS;
} else if (cmsg.type == CMD_NONE) { } 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; return EXIT_FAILURE;
} }
/* fill other fields */ /* fill other fields */

Loading…
Cancel
Save