summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2022-05-30 22:38:59 +0200
committerBenny Baumann <BenBE@geshi.org>2022-05-30 22:38:59 +0200
commit9eed30949beb1c4cf4b0361310d2913aa50b9ded (patch)
tree1761e23c0a31e50a2a647e36e943e410c6662232
parentce5009532392692ffe4ce6b394b63ca82ba4686b (diff)
Restore functionality of stripExeFromCmdline setting
This was accidentally lost in fbec3e4005ee
-rw-r--r--Process.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/Process.c b/Process.c
index 55bbae69..9d897604 100644
--- a/Process.c
+++ b/Process.c
@@ -601,11 +601,15 @@ void Process_makeCommandStr(Process* this) {
}
if (matchLen) {
- /* strip the matched exe prefix */
- cmdline += matchLen;
+ if (stripExeFromCmdline) {
+ /* strip the matched exe prefix */
+ cmdline += matchLen;
- commStart -= matchLen;
- commEnd -= matchLen;
+ commStart -= matchLen;
+ commEnd -= matchLen;
+ } else {
+ matchLen = 0;
+ }
}
if (!matchLen || (haveCommField && *cmdline)) {

© 2014-2024 Faster IT GmbH | imprint | privacy policy