Fix bug with uninitialized variable.
[cascardo/chat.git] / presence.c
1 /*
2  *  Copyright (C) 2008  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include "xmpp.h"
20
21 void
22 hc_xmpp_send_presence (hc_xmpp_t *xmpp, char *to, char *show, char *status)
23 {
24   iks *pres;
25   iks *sh;
26   iks *st;
27   pres = iks_new ("presence");
28   if (to != NULL && iks_strcmp (to, ""))
29     iks_insert_attrib (pres, "to", to);
30   if (show)
31     {
32       sh = iks_insert (pres, "show");
33       iks_insert_cdata (sh, show, 0);
34     }
35   if (status)
36     {
37       st = iks_insert (pres, "status");
38       iks_insert_cdata (st, status, 0);
39     }
40   hc_xmpp_send_iks (xmpp, pres);
41   hc_xmpp_sent_presence (xmpp, pres);
42   iks_delete (pres);
43 }