This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enigmatic.
View the commit online.
commit ee044138fc8355008b98ddfb8333af4601d5b121
Author: Alastair Poole <m...@alastairpoole.com>
AuthorDate: Sat Jul 27 00:35:44 2024 +0100
process: Fix for when process changes its cmdline.
---
src/bin/system/process.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/bin/system/process.c b/src/bin/system/process.c
index 69ed426..755375c 100644
--- a/src/bin/system/process.c
+++ b/src/bin/system/process.c
@@ -208,6 +208,8 @@ _cmd_args(Proc_Info *p, char *name, size_t len)
char *end = strchr(name, ' ');
if (end) *end = '\0';
+ end = strchr(name, ':');
+ if (end) *end = '\0';
p->command = strdup(name);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.