comparison plugins/raw.c @ 7746:d7fd01f7bdcb

[gaim-migrate @ 8391] " These patches fix the raw plugin and the gaiminc plugins so that they compile and function correctly." --Paul A (darkrain) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Thu, 04 Dec 2003 12:12:11 +0000
parents 7dba3e17cb21
children d7b8eb1f0a18
comparison
equal deleted inserted replaced
7745:9cc221f68107 7746:d7fd01f7bdcb
71 write(*(int *)gc->proto_data, "\r\n", 2); 71 write(*(int *)gc->proto_data, "\r\n", 2);
72 gaim_debug(GAIM_DEBUG_MISC, "raw", "IRC C: %s\n", txt); 72 gaim_debug(GAIM_DEBUG_MISC, "raw", "IRC C: %s\n", txt);
73 break; 73 break;
74 74
75 case GAIM_PROTO_JABBER: 75 case GAIM_PROTO_JABBER:
76 jab_send_raw(*(jconn *)gc->proto_data, txt); 76 jabber_send_raw((JabberStream *)gc->proto_data, txt, -1);
77 break; 77 break;
78 78
79 default: 79 default:
80 gaim_debug_error("raw", "Unknown protocol ID %d\n", 80 gaim_debug_error("raw", "Unknown protocol ID %d\n",
81 gaim_account_get_protocol(account)); 81 gaim_account_get_protocol(account));