2006-11-03 Jordi Mallach <jordi@sindominio.net>
* src/partyline.c: Remove two unused variables.
* src/client.c (client_readmsg): Change a gint to gsize to avoid
a crash when connecting on NetBSD/Sparc64. Thanks khorben for the
info. Fixes: #338712.
+2006-11-03 Jordi Mallach <jordi@sindominio.net>
+
+ * src/partyline.c: Remove two unused variables.
+ * src/client.c (client_readmsg): Change a gint to gsize to avoid
+ a crash when connecting on NetBSD/Sparc64. Thanks khorben for the
+ info. Fixes: #338712.
+
2006-11-03 Jordi Mallach <jordi@sindominio.net>
* configure.in, src/Makefile.am: Patch from Ricardo Setti: Add
int client_readmsg (gchar **str)
{
- gint bytes = 0;
+ gsize bytes = 0;
gchar buf[1024];
GError *error = NULL;
gint i = 0;
void partyline_namelabel (char *nick, char *team)
{
- gchar *nick_utf8, *team_utf8;
-
if (nick)
{
gtk_label_set_text (GTK_LABEL(namelabel), nick);