From: Eric W. <war...@us...> - 2001-11-24 19:15:35
|
Update of /cvsroot/gaim/gaim/src/protocols/oscar In directory usw-pr-cvs1:/tmp/cvs-serv24336/protocols/oscar Modified Files: oscar.c Log Message: I don't think anyone is being pleased with the way it is now. So I'll put in this fix. Maybe this will make more people happy. That comment pissed me off so much. I'll put it back to the way it was originally tomorrow when I get home. Index: oscar.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/oscar/oscar.c,v retrieving revision 1.71 retrieving revision 1.72 diff -u -d -r1.71 -r1.72 --- oscar.c 2001/11/20 01:01:22 1.71 +++ oscar.c 2001/11/24 19:15:32 1.72 @@ -1607,7 +1607,7 @@ away ? _("<i>User has no away message</i>") : _("<i>No Information Provided</i>"), - away ? legend : NULL, + legend, NULL); return 1; @@ -2269,11 +2269,13 @@ aim_getinfo(odata->sess, odata->conn, name, AIM_GETINFO_GENERALINFO); } +/* static void oscar_get_away_msg(struct gaim_connection *g, char *name) { struct oscar_data *odata = (struct oscar_data *)g->proto_data; if (!odata->icq) aim_getinfo(odata->sess, odata->conn, name, AIM_GETINFO_AWAYMESSAGE); } +*/ static void oscar_set_dir(struct gaim_connection *g, char *first, char *middle, char *last, char *maiden, char *city, char *state, char *country, int web) { @@ -2913,7 +2915,7 @@ ret->set_info = oscar_set_info; ret->get_info = oscar_get_info; ret->set_away = oscar_set_away; - ret->get_away = oscar_get_away_msg; + ret->get_away = NULL; ret->set_dir = oscar_set_dir; ret->get_dir = NULL; /* Oscar really doesn't have this */ ret->dir_search = oscar_dir_search; |