summaryrefslogtreecommitdiffstats
path: root/CommandLine.h
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 /CommandLine.h
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 'CommandLine.h')
-rw-r--r--CommandLine.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/CommandLine.h b/CommandLine.h
index fbdede84..18395005 100644
--- a/CommandLine.h
+++ b/CommandLine.h
@@ -14,6 +14,8 @@ typedef enum {
STATUS_OK_EXIT
} CommandLineStatus;
-int CommandLine_run(const char* name, int argc, char** argv);
+extern const char* program;
+
+int CommandLine_run(int argc, char** argv);
#endif

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