diff -r fbcfa5df4c5e -r 81079a81ebc6 src/protocols/icq/gaim_icq.c --- a/src/protocols/icq/gaim_icq.c Tue Apr 15 03:45:31 2003 +0000 +++ b/src/protocols/icq/gaim_icq.c Tue Apr 15 04:18:00 2003 +0000 @@ -361,7 +361,7 @@ g_free(id); } -static int icq_send_msg(struct gaim_connection *gc, char *who, char *msg, int len, int flags) { +static int icq_send_msg(struct gaim_connection *gc, const char *who, const char *msg, int len, int flags) { if (!(flags & IM_FLAG_AWAY) && (strlen(msg) > 0)) { struct icq_data *id = (struct icq_data *)gc->proto_data; long w = atol(who); @@ -457,7 +457,7 @@ return icon_online_xpm; }*/ -static void icq_get_info(struct gaim_connection *gc, char *who) { +static void icq_get_info(struct gaim_connection *gc, const char *who) { struct icq_data *id = (struct icq_data *)gc->proto_data; icq_SendInfoReq(id->link, atol(who)); }