summaryrefslogtreecommitdiffstats
path: root/m_option.c
diff options
context:
space:
mode:
Diffstat (limited to 'm_option.c')
-rw-r--r--m_option.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/m_option.c b/m_option.c
index 3be937f76b..01fdbfdb61 100644
--- a/m_option.c
+++ b/m_option.c
@@ -82,6 +82,7 @@ static int parse_flag(m_option_t* opt,char *name, char *param, void* dst, int sr
!strcasecmp(param, "y") ||
!strcasecmp(param, "j") ||
!strcasecmp(param, "i") ||
+ !strcasecmp(param, "tak") ||
!strcmp(param, "1")) {
if(dst) VAL(dst) = opt->max;
} else if (!strcasecmp(param, "no") ||
@@ -90,6 +91,7 @@ static int parse_flag(m_option_t* opt,char *name, char *param, void* dst, int sr
!strcasecmp(param, "nicht") ||
!strcasecmp(param, "nem") ||
!strcasecmp(param, "n") ||
+ !strcasecmp(param, "nie") ||
!strcmp(param, "0")) {
if(dst) VAL(dst) = opt->min;
} else {