From 49cda1814ed2b7bb0c6b98093b2f38dfe90fed0c Mon Sep 17 00:00:00 2001 From: Matthieu Pasini Date: Sat, 2 Feb 2008 09:33:05 +0100 Subject: [PATCH] modkey should not be required when not needed in key definition Signed-off-by: Julien Danjou --- common/configopts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/configopts.c b/common/configopts.c index 947a72bb..92fcce1d 100644 --- a/common/configopts.c +++ b/common/configopts.c @@ -245,7 +245,7 @@ cfg_opt_t rules_opts[] = }; cfg_opt_t key_opts[] = { - CFG_STR_LIST((char *) "modkey", (char *) "{Mod4}", CFGF_NONE), + CFG_STR_LIST((char *) "modkey", (char *) "", CFGF_NONE), CFG_STR((char *) "key", (char *) "None", CFGF_NONE), CFG_STR((char *) "command", (char *) "", CFGF_NONE), CFG_STR((char *) "arg", NULL, CFGF_NONE), @@ -253,7 +253,7 @@ cfg_opt_t key_opts[] = }; cfg_opt_t keylist_opts[] = { - CFG_STR_LIST((char *) "modkey", (char *) "{Mod4}", CFGF_NONE), + CFG_STR_LIST((char *) "modkey", (char *) "", CFGF_NONE), CFG_STR_LIST((char *) "keylist", (char *) NULL, CFGF_NONE), CFG_STR((char *) "command", (char *) "", CFGF_NONE), CFG_STR_LIST((char *) "arglist", NULL, CFGF_NONE),