0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-25 11:58:39 +02:00

authd/providers/ident: fix typo

This commit is contained in:
Elizabeth Myers 2016-03-28 00:03:27 -05:00
parent 54fb109d82
commit 8e00155164

View file

@ -394,7 +394,7 @@ add_conf_ident_timeout(const char *key __unused, int parc __unused, const char *
static void
set_ident_enabled(const char *key __unused, int parc __unused, const char **parv)
{
enable_ident = (strcasecmp(parv[0], "true") == 0 ||
ident_enable = (strcasecmp(parv[0], "true") == 0 ||
strcasecmp(parv[0], "1") == 0 ||
strcasecmp(parv[0], "enable") == 0);
}