diff --git a/src/lib66/parser_enabled.c b/src/lib66/parser_enabled.c
index d7663a96a0fd012a74267a39f5b10c03d3e449ad..361531849b5ef2b4b8b46c61dde21b43c80c566c 100644
--- a/src/lib66/parser_enabled.c
+++ b/src/lib66/parser_enabled.c
@@ -33,7 +33,7 @@
 /* @sv -> name of the service to parse with 
  * the path of the frontend file source
  * @Return 0 on fail
- * @Return on success
+ * @Return 1 on success
  * @Return 2 -> already parsed */
 int parse_service_before(ssexec_t *info,stralloc *parsed_list,stralloc *tree_list, char const *sv,unsigned int *nbsv, stralloc *sasv,uint8_t force,uint8_t conf,uint8_t import,uint8_t disable_module,char const *directory_forced)
 {
@@ -58,7 +58,7 @@ int parse_service_before(ssexec_t *info,stralloc *parsed_list,stralloc *tree_lis
 	auto_strings(tree,info->tree.s,SS_SVDIRS) ;
 
 	int r = parse_service_check_enabled(tree,svname,force,&exist) ;
-	if (!r) { sasv->len = 0 ; return 1 ; }
+	if (!r) { sasv->len = 0 ; return 2 ; }
 
 	sv_alltype sv_before = SV_ALLTYPE_ZERO ;
 	sasv->len = 0 ;
diff --git a/src/lib66/parser_module.c b/src/lib66/parser_module.c
index 19c9a4dabf38aa8136e121cb3277115c23902130..84845d3e5306b438f4a5db0d0478273c90f80bc6 100644
--- a/src/lib66/parser_module.c
+++ b/src/lib66/parser_module.c
@@ -251,8 +251,12 @@ int parse_module(sv_alltype *sv_before,ssexec_t *info,stralloc *parsed_list,stra
 			for (; idx < genalloc_len(sv_alltype,&gasv) ; idx++)
 			{
 				char *name = keep.s + genalloc_s(sv_alltype,&gasv)[idx].src ;
-				if (!strcmp(name,sv)) sv = name ;
-				break ;
+
+				if (!strcmp(name,sv))
+				{
+					sv = name ;
+					break ;
+				}
 			}
 			already_parsed = 1 ;
 		}