]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
unix-socket: Fix the message for unregister-tenant-handler
authorShivani Bhardwaj <shivanib134@gmail.com>
Wed, 20 Feb 2019 10:26:34 +0000 (15:56 +0530)
committerVictor Julien <victor@inliniac.net>
Sun, 24 Feb 2019 19:00:55 +0000 (20:00 +0100)
src/runmode-unix-socket.c

index 1fe2e026b3c73f74fd30bdbfd40c5a6d8e1345a8..40d77b3e4e25b7ba37eac811f0193c4f210dffe6 100644 (file)
@@ -789,7 +789,7 @@ TmEcode UnixSocketUnregisterTenantHandler(json_t *cmd, json_t* answer, void *dat
         return TM_ECODE_FAILED;
     }
 
-    json_object_set_new(answer, "message", json_string("handler added"));
+    json_object_set_new(answer, "message", json_string("handler removed"));
     return TM_ECODE_OK;
 }