From d0d568f9bc39f9e35b6d39ecf21b5e425ea91c85 Mon Sep 17 00:00:00 2001 From: defanor Date: Fri, 12 Feb 2021 20:11:20 +0300 Subject: Set log_function on initialisation rexmpp_init may write logs itself, so a logging function should be set for that. --- examples/basic.c | 3 +-- examples/weechat.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'examples') diff --git a/examples/basic.c b/examples/basic.c index 404b281..dbfdfa8 100644 --- a/examples/basic.c +++ b/examples/basic.c @@ -77,7 +77,7 @@ main (int argc, char **argv) { structure and an initial jid. */ rexmpp_t s; rexmpp_err_t err; - err = rexmpp_init(&s, argv[1]); + err = rexmpp_init(&s, argv[1], my_logger); if (err != REXMPP_SUCCESS) { puts("Failed to initialise rexmpp."); return -1; @@ -85,7 +85,6 @@ main (int argc, char **argv) { /* Set the primary callback functions: for logging, SASL, XML in and out. */ - s.log_function = my_logger; s.sasl_property_cb = my_sasl_property_cb; s.xml_in_cb = my_xml_in_cb; s.xml_out_cb = my_xml_out_cb; diff --git a/examples/weechat.c b/examples/weechat.c index 1fa4e57..cd89adb 100644 --- a/examples/weechat.c +++ b/examples/weechat.c @@ -531,8 +531,7 @@ command_xmpp_cb (const void *pointer, void *data, wr->password = strdup(argv[2]); wr->hooks = weechat_arraylist_new(42, 0, 0, NULL, NULL, hook_free_cb, NULL); rexmpp_t *s = &wr->rexmpp_state; - rexmpp_init(s, argv[1]); - s->log_function = my_logger; + rexmpp_init(s, argv[1], my_logger); s->sasl_property_cb = my_sasl_property_cb; s->xml_in_cb = my_xml_in_cb; s->xml_out_cb = my_xml_out_cb; -- cgit v1.2.3