changeset 1306:a7d21918234c

Fix jb_send_msg() call in OTR Also add a cast to remove a compiler warning in jabglue.c
author Mikael Berthe <mikael@lilotux.net>
date Sun, 09 Sep 2007 13:24:40 +0200
parents 9bc68473f8a3
children 6c116207ab2e
files mcabber/src/jabglue.c mcabber/src/otr.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mcabber/src/jabglue.c	Sat Sep 08 13:21:07 2007 +0200
+++ b/mcabber/src/jabglue.c	Sun Sep 09 13:24:40 2007 +0200
@@ -653,7 +653,7 @@
   g_free(barejid);
 #endif // HAVE_GPGME || defined JEP0022 || defined JEP0085
 
-  x = jutil_msgnew(strtype, (char*)fjid, NULL,
+  x = jutil_msgnew((char*)strtype, (char*)fjid, NULL,
                    (enc ? "This message is PGP-encrypted." : (char*)text));
   if (subject) {
     xmlnode y;
--- a/mcabber/src/otr.c	Sat Sep 08 13:21:07 2007 +0200
+++ b/mcabber/src/otr.c	Sun Sep 09 13:24:40 2007 +0200
@@ -566,7 +566,7 @@
                               const char *message)
 {
   char * id = g_strdup("otrinject");
-  jb_send_msg(recipient, message, ROSTER_TYPE_USER, "", id, NULL);
+  jb_send_msg(recipient, message, ROSTER_TYPE_USER, "", id, NULL, NULL);
   g_free(id);
 }