From: Vsevolod Stakhov Date: Tue, 23 Jun 2015 12:17:32 +0000 (+0100) Subject: Fix saving maps. X-Git-Tag: 1.0.0~514 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a68630753739582e7b920096bd4886965fa39bfd;p=thirdparty%2Frspamd.git Fix saving maps. --- diff --git a/src/controller.c b/src/controller.c index 3232e1cd8d..0c4ca14a8a 100644 --- a/src/controller.c +++ b/src/controller.c @@ -1404,8 +1404,8 @@ rspamd_controller_handle_savemap (struct rspamd_http_connection_entry *conn_ent, } id = strtoul (idstr->str, &errstr, 10); - if (*errstr != '\0' && g_ascii_isspace (*errstr)) { - msg_info ("invalid map id"); + if (*errstr != '\0' && !g_ascii_isspace (*errstr)) { + msg_info ("invalid map id: %V", idstr); rspamd_controller_send_error (conn_ent, 400, "Map id is invalid"); return 0; }