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 98096356d61d62e9863ddf51d658e08305a94bd4
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
AuthorDate: Fri Oct 27 11:42:03 2023 +0100
fix bug where we sorted non-file-add cmd's
---
src/efm/efm_back_end.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/efm/efm_back_end.c b/src/efm/efm_back_end.c
index cd24eb7..96406bf 100644
--- a/src/efm/efm_back_end.c
+++ b/src/efm/efm_back_end.c
@@ -131,7 +131,8 @@ _process(Smart_Data_Thread *std, Ecore_Thread *th, Eina_List *batch)
batch_tmp = eina_list_append(batch_tmp, c);
c_tmp = c;
}
- else if (!strcmp(c->command, c_tmp->command))
+ else if ((!strcmp(c->command, c_tmp->command)) &&
+ (!strcmp(c->command, "file-add")))
{
// works for file-add, file-del, file-mod
batch_tmp = eina_list_sorted_insert(batch_tmp, sort_cmd, c);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.