Mercurial > pidgin.yaz
comparison src/server.c @ 2773:a0fd8f91e294
[gaim-migrate @ 2786]
SPAM!!!
All recipients of the email generated by this commit each owe me $125 per email sent, plus a $75 handling fee for all messages combined.
Or was that supposed to be the other way around.
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Tue, 20 Nov 2001 01:01:22 +0000 |
| parents | 8a918df1a5ed |
| children | feea7103a235 |
comparison
equal
deleted
inserted
replaced
| 2772:f9227268db25 | 2773:a0fd8f91e294 |
|---|---|
| 158 | 158 |
| 159 void serv_get_info(struct gaim_connection *g, char *name) | 159 void serv_get_info(struct gaim_connection *g, char *name) |
| 160 { | 160 { |
| 161 if (g && g->prpl && g->prpl->get_info) | 161 if (g && g->prpl && g->prpl->get_info) |
| 162 g->prpl->get_info(g, name); | 162 g->prpl->get_info(g, name); |
| 163 } | |
| 164 | |
| 165 void serv_get_away(struct gaim_connection *g, char *name) | |
| 166 { | |
| 167 if (g && g->prpl && g->prpl->get_away) | |
| 168 g->prpl->get_away(g, name); | |
| 163 } | 169 } |
| 164 | 170 |
| 165 void serv_get_dir(struct gaim_connection *g, char *name) | 171 void serv_get_dir(struct gaim_connection *g, char *name) |
| 166 { | 172 { |
| 167 if (g && g_slist_find(connections, g) && g->prpl && g->prpl->get_dir) | 173 if (g && g_slist_find(connections, g) && g->prpl && g->prpl->get_dir) |
