comparison src/server.c @ 1749:5bfc58c20e82

[gaim-migrate @ 1759] patch from sean egan for event_set_info. why this would be necessary... i guess we'll see :) committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 25 Apr 2001 08:34:46 +0000
parents dd78a230aa06
children 1e0613d9526b
comparison
equal deleted inserted replaced
1748:2eec724fdbcd 1749:5bfc58c20e82
181 } 181 }
182 } 182 }
183 183
184 void serv_set_info(struct gaim_connection *g, char *info) 184 void serv_set_info(struct gaim_connection *g, char *info)
185 { 185 {
186 if (g->prpl && g->prpl->set_info) 186 if (g->prpl && g->prpl->set_info) {
187 plugin_event(event_set_info, g, info, 0, 0);
187 (*g->prpl->set_info)(g, info); 188 (*g->prpl->set_info)(g, info);
189 }
188 } 190 }
189 191
190 void serv_change_passwd(struct gaim_connection *g, char *orig, char *new) 192 void serv_change_passwd(struct gaim_connection *g, char *orig, char *new)
191 { 193 {
192 if (g->prpl && g->prpl->change_passwd) 194 if (g->prpl && g->prpl->change_passwd)