Restore functionality of stripExeFromCmdline setting

This was accidentally lost in fbec3e4005
This commit is contained in:
Benny Baumann 2022-05-30 22:38:59 +02:00
parent ce50095323
commit 9eed30949b
1 changed files with 8 additions and 4 deletions

View File

@ -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)) {