aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/ykfde.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/ykfde.c b/bin/ykfde.c
index 2f1e73a..59b958d 100644
--- a/bin/ykfde.c
+++ b/bin/ykfde.c
@@ -206,6 +206,11 @@ int main(int argc, char **argv) {
payload = strdup("");
}
+ /* warn when second factor is not enabled in config */
+ if ((*(char*)payload != 0 || new_2nd_factor != NULL) &&
+ iniparser_getboolean(ini, "general:" CONF2NDFACTOR, 0) == 0)
+ fprintf(stderr, "Warning: Processing second factor, but not enabled in config!\n");
+
/* get random number and limit to printable ASCII character (32 to 126) */
for(i = 0; i < CHALLENGELEN; i++)
challenge_new[i] = (rand() % (126 - 32)) + 32;