Add extra arg to hk_message_out (patch by Holger) default tip
authorMyhailo Danylenko <isbear@ukrpost.net>
Fri, 06 Nov 2015 01:14:22 +0200
changeset 38 f195352808fb
parent 37 ed1b8250a170
Add extra arg to hk_message_out (patch by Holger)
cmd.c
docs/todo.mdwn
--- a/cmd.c	Thu Nov 13 18:56:44 2014 +0200
+++ b/cmd.c	Fri Nov 06 01:14:22 2015 +0200
@@ -92,10 +92,10 @@
 	if (!room) {
 		if (subject) {
 			gchar *hbody = g_strdup_printf ("[%s]\n%s", subject, body);
-			hk_message_out (to, NULL, 0, hbody, crypted, xep184);
+			hk_message_out (to, NULL, 0, hbody, crypted, 0, xep184);
 			g_free (hbody);
 		} else
-			hk_message_out (to, NULL, 0, body, crypted, xep184);
+			hk_message_out (to, NULL, 0, body, crypted, 0, xep184);
 	}
 
 	return TRUE;
--- a/docs/todo.mdwn	Thu Nov 13 18:56:44 2014 +0200
+++ b/docs/todo.mdwn	Fri Nov 06 01:14:22 2015 +0200
@@ -1,4 +1,5 @@
 
 * Header template option?
 * Option to strip leading/trailing whitespace
+* Detect carbon flag presence on hk_message_out