summaryrefslogtreecommitdiff
path: root/src/otr/module.h
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2018-03-28 23:06:47 -0300
committerdequis <dx@dxzone.com.ar>2018-03-28 23:06:47 -0300
commitdd7dc7ca7d0b04ae2d522a209845c453bfd9aab5 (patch)
tree3f1479a4d4f17a54d6287b1bdd4dc82a828b4488 /src/otr/module.h
parentb52cf1015eaa4d759c9377df35a56988655dce89 (diff)
downloadirssi-dd7dc7ca7d0b04ae2d522a209845c453bfd9aab5.zip
otr: fix missing 'target' param in 'message private' signal
Fixes warnings like these on '/msg yourself' -!- Irssi: critical privmsg_get_query: assertion 'nick != NULL' failed -!- Irssi: critical query_find: assertion 'nick != NULL' failed
Diffstat (limited to 'src/otr/module.h')
-rw-r--r--src/otr/module.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/otr/module.h b/src/otr/module.h
index fdfc77bd..513ee03b 100644
--- a/src/otr/module.h
+++ b/src/otr/module.h
@@ -24,6 +24,6 @@
#include "common.h"
#include "servers.h"
-void sig_message_private(SERVER_REC *server, const char *msg, const char *nick, const char *address);
+void sig_message_private(SERVER_REC *server, const char *msg, const char *nick, const char *address, const char *target);
#endif /* IRSSI_OTR_MODULE */