mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 12:53:42 +02:00
toupper(), tolower(), isspace(), is..etc..() aren't safe with chars in some
systems, use our own is_...() functions now instead. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2348 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
820c9d3d82
commit
f4897860b5
35 changed files with 112 additions and 95 deletions
|
|
@ -282,7 +282,7 @@ int quitmsg_is_split(const char *msg)
|
|||
/* top-domain1 must be 2+ chars long and contain only alphabets */
|
||||
p = host2-1;
|
||||
while (p[-1] != '.') {
|
||||
if (!isalpha(p[-1]))
|
||||
if (!i_isalpha(p[-1]))
|
||||
return FALSE;
|
||||
p--;
|
||||
}
|
||||
|
|
@ -291,7 +291,7 @@ int quitmsg_is_split(const char *msg)
|
|||
/* top-domain2 must be 2+ chars long and contain only alphabets */
|
||||
p = host2+strlen(host2);
|
||||
while (p[-1] != '.') {
|
||||
if (!isalpha(p[-1]))
|
||||
if (!i_isalpha(p[-1]))
|
||||
return FALSE;
|
||||
p--;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue