mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +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
|
|
@ -266,7 +266,7 @@ static void settings_save_fe(const char *fname)
|
|||
|
||||
static void settings_save_confirm(const char *line, char *fname)
|
||||
{
|
||||
if (toupper(line[0]) == 'Y')
|
||||
if (i_toupper(line[0]) == 'Y')
|
||||
settings_save_fe(fname);
|
||||
g_free(fname);
|
||||
}
|
||||
|
|
@ -304,7 +304,7 @@ static void cmd_save(const char *data)
|
|||
|
||||
static void settings_clean_confirm(const char *line)
|
||||
{
|
||||
if (toupper(line[0]) == 'Y')
|
||||
if (i_toupper(line[0]) == 'Y')
|
||||
settings_clean_invalid();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue