Update of /cvsroot/gaim/gaim/src
In directory sc8-pr-cvs1:/tmp/cvs-serv10382/src
Modified Files:
prpl.h util.c
Log Message:
put normalizing back in the realm of sanity (what was I thinking?) and fix
jabber chat case sensitivity (as well as a few other things)
Index: prpl.h
===================================================================
RCS file: /cvsroot/gaim/gaim/src/prpl.h,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -d -p -r1.137 -r1.138
--- prpl.h 14 Oct 2003 05:07:38 -0000 1.137
+++ prpl.h 14 Oct 2003 16:44:35 -0000 1.138
@@ -306,7 +306,7 @@ struct _GaimPluginProtocolInfo
void (*convo_closed)(GaimConnection *, const char *who);
- const char *(*normalize)(const GaimAccount *, const char *);
+ const char *(*normalize)(const char *);
void (*set_buddy_icon)(GaimConnection *, const char *filename);
Index: util.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/util.c,v
retrieving revision 1.227
retrieving revision 1.228
diff -u -d -p -r1.227 -r1.228
--- util.c 14 Oct 2003 05:07:38 -0000 1.227
+++ util.c 14 Oct 2003 16:44:35 -0000 1.228
@@ -1262,7 +1262,7 @@ gaim_normalize(const GaimAccount *accoun
prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl);
if(prpl_info && prpl_info->normalize) {
- return prpl_info->normalize(account, s);
+ return prpl_info->normalize(s);
} else {
static char buf[BUF_LEN];
char *tmp;
|