summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 bffef21b8..89da6a5cc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120001107
2 - (bal) acconfig.in - removed the double "USE_PIPES" entry.
3 - (bal) sshd.init files corrected to assign $? to RETVAL. Patch by
4 Jarno Huuskonen <jhuuskon@messi.uku.fi>
5
120001106 620001106
2 - (djm) Use Jim's new 1.0.3 askpass in Redhat RPMs 7 - (djm) Use Jim's new 1.0.3 askpass in Redhat RPMs
3 - (djm) Manually fix up missed diff hunks (mainly RCS idents) 8 - (djm) Manually fix up missed diff hunks (mainly RCS idents)
diff --git a/acconfig.h b/acconfig.h
index 9e95f426b..1333a4537 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -23,9 +23,6 @@
23/* Define if your password has a pw_class field */ 23/* Define if your password has a pw_class field */
24#undef HAVE_PW_CLASS_IN_PASSWD 24#undef HAVE_PW_CLASS_IN_PASSWD
25 25
26/* Define if your socketpair() has bugs */
27#undef USE_PIPES
28
29/* Define if your system's struct sockaddr_un has a sun_len member */ 26/* Define if your system's struct sockaddr_un has a sun_len member */
30#undef HAVE_SUN_LEN_IN_SOCKADDR_UN 27#undef HAVE_SUN_LEN_IN_SOCKADDR_UN
31 28
diff --git a/contrib/redhat/sshd.init b/contrib/redhat/sshd.init
index 83c10a885..41f98ad88 100755
--- a/contrib/redhat/sshd.init
+++ b/contrib/redhat/sshd.init
@@ -72,6 +72,7 @@ case "$1" in
72 echo -n "Shutting down sshd: " 72 echo -n "Shutting down sshd: "
73 if [ -f $PID_FILE ] ; then 73 if [ -f $PID_FILE ] ; then
74 killproc sshd 74 killproc sshd
75 RETVAL=$?
75 [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sshd 76 [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sshd
76 fi 77 fi
77 echo 78 echo
diff --git a/contrib/redhat/sshd.init-5.x b/contrib/redhat/sshd.init-5.x
index e836b6919..51ded9338 100755
--- a/contrib/redhat/sshd.init-5.x
+++ b/contrib/redhat/sshd.init-5.x
@@ -39,6 +39,7 @@ case "$1" in
39 echo -n "Shutting down sshd: " 39 echo -n "Shutting down sshd: "
40 if [ -f /var/run/sshd.pid ] ; then 40 if [ -f /var/run/sshd.pid ] ; then
41 killproc sshd 41 killproc sshd
42 RETVAL=$?
42 fi 43 fi
43 echo 44 echo
44 [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sshd 45 [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sshd