summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-07-08 10:17:40 +1000
committerDamien Miller <djm@mindrot.org>2000-07-08 10:17:40 +1000
commit90dcc0590d4ea2bfbfb93f83aab51f2ecf2e88f0 (patch)
treedb24860a3d0f893824b6f018ee1bf28409183e51
parentce40c70f1730c2044f9115db157e0546ff351992 (diff)
- (djm) Fix incorrect configure handling of --with-rsh-path option. Fix from
Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
-rw-r--r--ChangeLog2
-rw-r--r--configure.in2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ad64019eb..4b9a58730 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
120000708 120000708
2 - (djm) Fix bad fprintf format handling in auth-pam.c. Patch from 2 - (djm) Fix bad fprintf format handling in auth-pam.c. Patch from
3 Aaron Hopkins <aaron@die.net> 3 Aaron Hopkins <aaron@die.net>
4 - (djm) Fix incorrect configure handling of --with-rsh-path option. Fix from
5 Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
4 6
520000702 720000702
6 - (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com> 8 - (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
diff --git a/configure.in b/configure.in
index dbc5a18ee..ace6de4b4 100644
--- a/configure.in
+++ b/configure.in
@@ -713,7 +713,7 @@ AC_ARG_WITH(rsh,
713 [ --with-rsh=PATH Specify path to remote shell program ], 713 [ --with-rsh=PATH Specify path to remote shell program ],
714 [ 714 [
715 if test "x$withval" != "$no" ; then 715 if test "x$withval" != "$no" ; then
716 rsa_path=$withval 716 rsh_path=$withval
717 fi 717 fi
718 ], 718 ],
719 [ 719 [