summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-11-07 16:41:41 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-11-07 16:41:41 +0000
commit89ef41a7848612af76b477b9018d178e38edb415 (patch)
tree6d13b4e5f86a3ee0635c238e9a8a6b83cf270544
parentdf4a7aee788cb35d50ea049c490c16ea257c4496 (diff)
- (bal) acconfig.in - removed the double "USE_PIPES" entry. Patch by
Mark Miller <markm@swoon.net> - (bal) sshd.init files corrected to assign $? to RETVAL. Patch by Jarno Huuskonen <jhuuskon@messi.uku.fi>
-rw-r--r--ChangeLog5
-rw-r--r--acconfig.h3
-rwxr-xr-xcontrib/redhat/sshd.init1
-rwxr-xr-xcontrib/redhat/sshd.init-5.x1
4 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index bffef21b..89da6a5c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+20001107
+ - (bal) acconfig.in - removed the double "USE_PIPES" entry.
+ - (bal) sshd.init files corrected to assign $? to RETVAL. Patch by
+ Jarno Huuskonen <jhuuskon@messi.uku.fi>
+
20001106
- (djm) Use Jim's new 1.0.3 askpass in Redhat RPMs
- (djm) Manually fix up missed diff hunks (mainly RCS idents)
diff --git a/acconfig.h b/acconfig.h
index 9e95f426..1333a453 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -23,9 +23,6 @@
/* Define if your password has a pw_class field */
#undef HAVE_PW_CLASS_IN_PASSWD
-/* Define if your socketpair() has bugs */
-#undef USE_PIPES
-
/* Define if your system's struct sockaddr_un has a sun_len member */
#undef HAVE_SUN_LEN_IN_SOCKADDR_UN
diff --git a/contrib/redhat/sshd.init b/contrib/redhat/sshd.init
index 83c10a88..41f98ad8 100755
--- a/contrib/redhat/sshd.init
+++ b/contrib/redhat/sshd.init
@@ -72,6 +72,7 @@ case "$1" in
echo -n "Shutting down sshd: "
if [ -f $PID_FILE ] ; then
killproc sshd
+ RETVAL=$?
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sshd
fi
echo
diff --git a/contrib/redhat/sshd.init-5.x b/contrib/redhat/sshd.init-5.x
index e836b691..51ded933 100755
--- a/contrib/redhat/sshd.init-5.x
+++ b/contrib/redhat/sshd.init-5.x
@@ -39,6 +39,7 @@ case "$1" in
echo -n "Shutting down sshd: "
if [ -f /var/run/sshd.pid ] ; then
killproc sshd
+ RETVAL=$?
fi
echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sshd