# HG changeset patch # User Paul Aurich # Date 1281760747 0 # Node ID 7c9a4235342cc8499736f09db9735dd899f2192a # Parent 9a203ff977f6ae4d586dcaf89bc9b62b7a4be462 < QuLogic> on line 208 of jabber.c, should that be *dot? < darkrain42> Looks like it to me. diff -r 9a203ff977f6 -r 7c9a4235342c libpurple/protocols/jabber/jabber.c --- a/libpurple/protocols/jabber/jabber.c Thu Aug 12 17:05:07 2010 +0000 +++ b/libpurple/protocols/jabber/jabber.c Sat Aug 14 04:39:07 2010 +0000 @@ -205,7 +205,7 @@ * resource string from being unreasonably long on systems which stuff the * whole FQDN in the hostname */ if((dot = strchr(hostname, '.'))) - dot = '\0'; + *dot = '\0'; return purple_strreplace(input, "__HOSTNAME__", hostname); }