mirror of
https://github.com/xzeldon/htop.git
synced 2024-12-25 15:25:45 +00:00
Restore functionality of stripExeFromCmdline setting
This was accidentally lost in fbec3e4005
This commit is contained in:
parent
ce50095323
commit
9eed30949b
12
Process.c
12
Process.c
@ -601,11 +601,15 @@ void Process_makeCommandStr(Process* this) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (matchLen) {
|
if (matchLen) {
|
||||||
/* strip the matched exe prefix */
|
if (stripExeFromCmdline) {
|
||||||
cmdline += matchLen;
|
/* strip the matched exe prefix */
|
||||||
|
cmdline += matchLen;
|
||||||
|
|
||||||
commStart -= matchLen;
|
commStart -= matchLen;
|
||||||
commEnd -= matchLen;
|
commEnd -= matchLen;
|
||||||
|
} else {
|
||||||
|
matchLen = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!matchLen || (haveCommField && *cmdline)) {
|
if (!matchLen || (haveCommField && *cmdline)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user