Mercurial > pidgin.yaz
changeset 22735:a184ac4eace6
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.
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 17 Apr 2008 07:12:45 +0000 |
parents | 8f4f88e03efb |
children | 3b14215d2ca4 |
files | libpurple/protocols/oscar/util.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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; }