summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-01-18 08:57:14 +1100
committerDamien Miller <djm@mindrot.org>2000-01-18 08:57:14 +1100
commitdbd250f8ab4d7493e4e0aa183537b445ca05f381 (patch)
tree291f3979a56a99082054d5a9c7c497e195c89e95
parentb13c73e385ec7f5fe9c81078c71e01141894eca6 (diff)
- Fixed --with-pid-dir option
-rw-r--r--CREDITS1
-rw-r--r--ChangeLog3
-rw-r--r--acconfig.h2
-rw-r--r--configure.in2
4 files changed, 6 insertions, 2 deletions
diff --git a/CREDITS b/CREDITS
index 13d612902..f0be1263b 100644
--- a/CREDITS
+++ b/CREDITS
@@ -3,6 +3,7 @@ Tatu Ylonen <ylo@cs.hut.fi> - Creator of SSH
3Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos, 3Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
4Theo de Raadt, and Dug Song - Creators of OpenSSH 4Theo de Raadt, and Dug Song - Creators of OpenSSH
5 5
6Andrew Stribblehill <a.d.stribblehill@durham.ac.uk> - Bugfixes
6Andre Lucas <andre.lucas@dial.pipex.com> - Many portability fixes 7Andre Lucas <andre.lucas@dial.pipex.com> - Many portability fixes
7Ben Taylor <bent@clark.net> - Solaris debugging and fixes 8Ben Taylor <bent@clark.net> - Solaris debugging and fixes
8Chip Salzenberg <chip@valinux.com> - Assorted patches 9Chip Salzenberg <chip@valinux.com> - Assorted patches
diff --git a/ChangeLog b/ChangeLog
index 77501f4e7..0ddb5d5be 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120000118
2 - Fixed --with-pid-dir option
3
120000117 420000117
2 - Clean up bsd-bindresvport.c. Use arc4random() for picking initial 5 - Clean up bsd-bindresvport.c. Use arc4random() for picking initial
3 port, ignore EINVAL errors (Linux) when searching for free port. 6 port, ignore EINVAL errors (Linux) when searching for free port.
diff --git a/acconfig.h b/acconfig.h
index 2e12bd47f..37f4f1207 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -133,7 +133,7 @@
133#undef USER_PATH 133#undef USER_PATH
134 134
135/* Specify location of ssh.pid */ 135/* Specify location of ssh.pid */
136#undef PID_DIR 136#undef PIDDIR
137 137
138@BOTTOM@ 138@BOTTOM@
139 139
diff --git a/configure.in b/configure.in
index b356beb59..5fdce1803 100644
--- a/configure.in
+++ b/configure.in
@@ -670,7 +670,7 @@ AC_ARG_WITH(pid-dir,
670 fi 670 fi
671 ] 671 ]
672) 672)
673AC_DEFINE_UNQUOTED(PID_DIR, "$piddir") 673AC_DEFINE_UNQUOTED(PIDDIR, "$piddir")
674AC_SUBST(piddir) 674AC_SUBST(piddir)
675 675
676dnl Check for mail directory (last resort if we cannot get it from headers) 676dnl Check for mail directory (last resort if we cannot get it from headers)