From ad0e0fb2cac535817eac2669e046a4c4e07ab717 Mon Sep 17 00:00:00 2001 From: Steffen Nurpmeso Date: Wed, 11 Oct 2017 20:12:46 +0200 Subject: [PATCH] FIX previous --- accmacvar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accmacvar.c b/accmacvar.c index 6293c2d5..1439cebe 100644 --- a/accmacvar.c +++ b/accmacvar.c @@ -1875,7 +1875,7 @@ a_amv_var__clearenv(char const *name, struct a_amv_var *avp){ if((l = strlen(name)) > 0){ for(; *ecpp != NULL; ++ecpp) - if(!strncmp(*ecpp, name, l)){ + if(!strncmp(*ecpp, name, l) && (*ecpp)[l] == '='){ do ecpp[0] = ecpp[1]; while(*ecpp++ != NULL); -- 2.11.4.GIT