- (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>
This commit is contained in:
Ben Lindstrom 2000-11-07 16:41:41 +00:00
parent df4a7aee78
commit 89ef41a784
4 changed files with 7 additions and 3 deletions

View File

@ -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)

View File

@ -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

View File

@ -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

View File

@ -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