# HG changeset patch # User Mark Doliner # Date 1247270743 0 # Node ID 2eba2794423df619dda9bc8b77ec12e8a86fd9dd # Parent 7e79102cda405c69583aaa4b077887c11529de29 Doh, small typo. Tests pass now. Yay. diff -r 7e79102cda40 -r 2eba2794423d libpurple/protocols/jabber/jutil.c --- a/libpurple/protocols/jabber/jutil.c Fri Jul 10 23:58:36 2009 +0000 +++ b/libpurple/protocols/jabber/jutil.c Sat Jul 11 00:05:43 2009 +0000 @@ -73,7 +73,7 @@ while(c && *c) { gunichar ch = g_utf8_get_char(c); /* The list of characters allowed in domain names is pretty small */ - if (!( (ch >= 'a' && *c <= 'z') + if (!( (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9') || (ch >= 'A' && ch <= 'Z') || ch == '.'