We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba8802b commit ec7299aCopy full SHA for ec7299a
RepostConfirmationCancelerTalk/cb_config.c
@@ -98,11 +98,11 @@ static void parse_conf(char *data, struct config *conf)
98
break;
99
case '@':
100
if (global) {
101
- if (line == "@WARNING_WHEN_CLOSE_DIALOG")
+ if (strcmp(line, "@WARNING_WHEN_CLOSE_DIALOG") == 0)
102
{
103
conf->warning_when_close_dialog = 1;
104
}
105
- if (line == "@CLOSE_ERR_CACHE_MISS_PAGE")
+ if (strcmp(line, "@CLOSE_ERR_CACHE_MISS_PAGE") == 0)
106
107
conf->close_err_cache_miss_page = 1;
108
0 commit comments