This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository efm2.

View the commit online.

commit 2285db0fc84d41201cd61f8dc4c86715a48ba07b
Author: Carsten Haitzler (Rasterman) <[email protected]>
AuthorDate: Tue Feb 10 11:34:17 2026 +0000

    typebuf - has glob - fix checking for all glob chars
---
 src/efm/efm_typebuf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/efm/efm_typebuf.c b/src/efm/efm_typebuf.c
index 8a8663a..855a578 100644
--- a/src/efm/efm_typebuf.c
+++ b/src/efm/efm_typebuf.c
@@ -152,7 +152,7 @@ _has_glob(const char *glob)
           if (!escaped) escaped = EINA_TRUE;
           else escaped = EINA_FALSE;
         }
-      else if ((s[i] == '*') || (s[i] == '*') || (s[i] == '*') || (s[i] == '*'))
+      else if ((s[i] == '*') || (s[i] == '?') || (s[i] == '[') || (s[i] == ']'))
         {
           if (!escaped) return EINA_TRUE;
           else escaped = EINA_FALSE;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to