marking.c
changeset 29 2464d2194e57
parent 27 b51de2faa028
child 30 48213f7bb577
equal deleted inserted replaced
28:940e15e0075b 29:2464d2194e57
    77 			if (check_jid_syntax(j)) {
    77 			if (check_jid_syntax(j)) {
    78 				scr_LogPrint(LPRINT_NORMAL|LPRINT_NOTUTF8,
    78 				scr_LogPrint(LPRINT_NORMAL|LPRINT_NOTUTF8,
    79 					     "<%s> is not a valid Jabber ID.", j);
    79 					     "<%s> is not a valid Jabber ID.", j);
    80 				return;
    80 				return;
    81 			}
    81 			}
    82 			jid = jidtodisp(j);
    82 			jid = g_strdup(j);
    83 			if (!jid) {
    83 			if (!jid) {
    84 				scr_LogPrint(LPRINT_NORMAL|LPRINT_NOTUTF8,
    84 				scr_LogPrint(LPRINT_NORMAL|LPRINT_NOTUTF8,
    85 					     "Unexpected error.");
    85 					     "Unexpected error.");
    86 				return;
    86 				return;
    87 			}
    87 			}