]> source.dussan.org Git - rspamd.git/commitdiff
Fix task:get_queue_id() 257/head
authorAndrew Lewis <nerf@judo.za.org>
Sun, 5 Apr 2015 19:00:57 +0000 (21:00 +0200)
committerAndrew Lewis <nerf@judo.za.org>
Sun, 5 Apr 2015 19:00:57 +0000 (21:00 +0200)
src/lua/lua_task.c

index 5c1a560f6fde3c59f9f20fb909897e1b1e756e4b..618e613df73f20ae6c583fe9a0483c41e256cf71 100644 (file)
@@ -1237,7 +1237,7 @@ lua_task_get_received_headers (lua_State * L)
 static gint
 lua_task_get_queue_id (lua_State *L)
 {
-       struct rspamd_task *task = lua_check_task (L, 1);
+       struct rspamd_task *task = lua_check_task (L);
 
        if (task && task->queue_id != NULL && strcmp (task->queue_id, "undef") != 0) {
                lua_pushstring (L, task->queue_id);