# HG changeset patch # User Mark Doliner # Date 1208416365 0 # Node ID a184ac4eace6b6c1c4a4c8b1d63c2bf47e7e8093 # Parent 8f4f88e03efb4836f6085fbc354f2dd9c4868093 Go back to not allowing periods in screen names. I think the guy said this didn't help him, and I don't really believe that they're valid. diff -r 8f4f88e03efb -r a184ac4eace6 libpurple/protocols/oscar/util.c --- a/libpurple/protocols/oscar/util.c Thu Apr 17 07:09:46 2008 +0000 +++ b/libpurple/protocols/oscar/util.c Thu Apr 17 07:12:45 2008 +0000 @@ -156,7 +156,7 @@ return FALSE; for (i = 0; sn[i] != '\0'; i++) { - if (!isalnum(sn[i]) && (sn[i] != ' ') && (sn[i] != '.')) + if (!isalnum(sn[i]) && (sn[i] != ' ')) return FALSE; }