summaryrefslogtreecommitdiffstats
path: root/htop.c
diff options
context:
space:
mode:
authorNathan Scott <nathans@redhat.com>2023-04-04 16:47:11 +1000
committerBenBE <BenBE@geshi.org>2023-04-06 00:19:54 +0200
commit14da84f877a0f3627ddaea836c9537b2292fa22d (patch)
treed8eff482c76709187482e41eb36628b5de935078 /htop.c
parente7f447b6a3473a572d3e6c191128f1796477860d (diff)
Refactor to use a program name pointer instead of PACKAGE macro
During SEGV handling under pcp-htop several incorrect strings were observed - in particular reporting htop as the binary name instead of pcp-htop. This is something we want to be crystal clear on when we request user stack traces etc, so make sure this cannot be done incorrectly.
Diffstat (limited to 'htop.c')
-rw-r--r--htop.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/htop.c b/htop.c
index 6b9ea48a..71557938 100644
--- a/htop.c
+++ b/htop.c
@@ -11,6 +11,8 @@ in the source distribution for its full text.
#include "CommandLine.h"
+const char* program = PACKAGE;
+
int main(int argc, char** argv) {
- return CommandLine_run(PACKAGE, argc, argv);
+ return CommandLine_run(argc, argv);
}

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