|
From f22fd1f0b3f4f5ec49c668f95776cee5214ea7e9 Mon Sep 17 00:00:00 2001
|
|
From: Brent Cook <busterb@gmail.com>
|
|
Date: Mon, 12 Jan 2015 06:18:31 -0600
|
|
Subject: [PATCH 09/10] initialize setproctitle where needed
|
|
|
|
We need to save a copy of argv and __progname to avoid setproctitle
|
|
clobbering them.
|
|
---
|
|
src/usr.sbin/ntpd/ntpd.c | 20 ++++++++++++++++++++
|
|
1 file changed, 20 insertions(+)
|
|
|
|
diff --git a/src/usr.sbin/ntpd/ntpd.c b/src/usr.sbin/ntpd/ntpd.c
|
|
index 304e050..4d2d11d 100644
|
|
--- a/src/usr.sbin/ntpd/ntpd.c
|
|
+++ b/src/usr.sbin/ntpd/ntpd.c
|
|
@@ -112,6 +112,13 @@ usage(void)
|
|
#define POLL_MAX 8
|
|
#define PFD_PIPE 0
|
|
|
|
+/* Saves a copy of argv for setproctitle emulation */
|
|
+#ifndef HAVE_SETPROCTITLE
|
|
+static char **saved_argv;
|
|
+#endif
|
|
+
|
|
+char *get_progname(char *argv0);
|
|
+
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
@@ -135,6 +142,19 @@ main(int argc, char *argv[])
|
|
|
|
log_init(1); /* log to stderr until daemonized */
|
|
|
|
+ __progname = get_progname(argv[0]);
|
|
+
|
|
+#ifndef HAVE_SETPROCTITLE
|
|
+ int i;
|
|
+ /* Prepare for later setproctitle emulation */
|
|
+ saved_argv = calloc(argc + 1, sizeof(*saved_argv));
|
|
+ for (i = 0; i < argc; i++)
|
|
+ saved_argv[i] = strdup(argv[i]);
|
|
+ saved_argv[i] = NULL;
|
|
+ compat_init_setproctitle(argc, argv);
|
|
+ argv = saved_argv;
|
|
+#endif
|
|
+
|
|
while ((ch = getopt(argc, argv, "df:np:sSv")) != -1) {
|
|
switch (ch) {
|
|
case 'd':
|
|
--
|
|
1.9.1
|
|
|