This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository evisum.
View the commit online.
commit 17d45ac4bfe9ff12717f391d20d04f88be8d3400
Author: Alastair Poole <m...@alastairpoole.com>
AuthorDate: Sat Jul 27 00:36:14 2024 +0100
processs: Linux fix for process naming.
Processes can fuck with command arguments. This addresses that.
@fix
---
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 b810acf..0d2b7b4 100644
--- a/src/bin/system/process.c
+++ b/src/bin/system/process.c
@@ -205,6 +205,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.