From 05d87a9b307bf4a9fc5e8b6e48b0fa0fc4fd9a50 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 22 Apr 2015 19:09:19 -0400 Subject: [PATCH] fix module blocking for wl modules these should never be saved to or loaded from the config --- src/bin/e_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_module.c b/src/bin/e_module.c index 1d2351b..1a33c57 100644 --- a/src/bin/e_module.c +++ b/src/bin/e_module.c @@ -241,7 +241,7 @@ e_module_all_load(void) if (!em) continue; if ((!e_util_strcmp(em->name, "comp")) || (!e_util_strcmp(em->name, "conf_comp")) || - (e_comp && (!strcmp(em->name, "wl_x11"))) //block wl_x11 if we've already created a compositor + (!strncmp(em->name, "wl_", 3)) //block wl_* modules from being saved ) { eina_stringshare_del(em->name); -- 2.7.4