summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2014-01-22 16:30:15 +1100
committerDamien Miller <djm@mindrot.org>2014-01-22 16:30:15 +1100
commitee87838786cef0194db36ae0675b3e7c4e8ec661 (patch)
treea7df25deb4b1d3becbcac8022f03bd3bb03960d7
parent5c96a154c7940fa67b1f11c421e390dbbc159f27 (diff)
- (djm) [openbsd-compat/setproctitle.c] Don't fail to compile if a
platform that is expected to use the reuse-argv style setproctitle hack surprises us by providing a setproctitle in libc; ok dtucker
-rw-r--r--ChangeLog5
-rw-r--r--openbsd-compat/setproctitle.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8010f8b40..479221afb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120130122
2 - (djm) [openbsd-compat/setproctitle.c] Don't fail to compile if a
3 platform that is expected to use the reuse-argv style setproctitle
4 hack surprises us by providing a setproctitle in libc; ok dtucker
5
120140121 620140121
2 - (dtucker) [configure.ac] Make PIE a configure-time option which defaults 7 - (dtucker) [configure.ac] Make PIE a configure-time option which defaults
3 to on platforms where it's known to be reliably detected and off elsewhere. 8 to on platforms where it's known to be reliably detected and off elsewhere.
diff --git a/openbsd-compat/setproctitle.c b/openbsd-compat/setproctitle.c
index a69db22a2..9f7ca14c2 100644
--- a/openbsd-compat/setproctitle.c
+++ b/openbsd-compat/setproctitle.c
@@ -67,7 +67,8 @@ static size_t argv_env_len = 0;
67void 67void
68compat_init_setproctitle(int argc, char *argv[]) 68compat_init_setproctitle(int argc, char *argv[])
69{ 69{
70#if defined(SPT_TYPE) && SPT_TYPE == SPT_REUSEARGV 70#if !defined(HAVE_SETPROCTITLE) && \
71 defined(SPT_TYPE) && SPT_TYPE == SPT_REUSEARGV
71 extern char **environ; 72 extern char **environ;
72 char *lastargv = NULL; 73 char *lastargv = NULL;
73 char **envp = environ; 74 char **envp = environ;