From: Sean E. <sea...@us...> - 2002-08-29 01:47:18
|
Update of /cvsroot/gaim/gaim/src/protocols/napster In directory usw-pr-cvs1:/tmp/cvs-serv15635/src/protocols/napster Modified Files: napster.c Log Message: some patches from some people. Index: napster.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/napster/napster.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- napster.c 25 Aug 2002 10:51:24 -0000 1.19 +++ napster.c 29 Aug 2002 01:47:14 -0000 1.20 @@ -70,7 +70,7 @@ /* FIXME: Make this use va_arg stuff */ -static void nap_write_packet(struct gaim_connection *gc, unsigned short command, char *message) +static void nap_write_packet(struct gaim_connection *gc, unsigned short command, const char *message) { struct nap_data *ndata = (struct nap_data *)gc->proto_data; unsigned short size; @@ -514,7 +514,7 @@ return 0; } -static void nap_add_buddy(struct gaim_connection *gc, char *name) +static void nap_add_buddy(struct gaim_connection *gc, const char *name) { nap_write_packet(gc, 0xCF, name); } |