mirror of git://anongit.mindrot.org/openssh.git
- (bal) reverted out of 5/2001 change to atexit(). I assume I
did it to handle SonyOS. If that is the case than we will do a special case for them.
This commit is contained in:
parent
e996d72e02
commit
fa9b641eb0
|
@ -3,6 +3,9 @@
|
|||
Dave Dykstra <dwd@bell-labs.com>
|
||||
- (stevesk) fix --with-zlib=
|
||||
- (djm) Use case statements in autoconf to clean up some tests
|
||||
- (bal) reverted out of 5/2001 change to atexit(). I assume I
|
||||
did it to handle SonyOS. If that is the case than we will
|
||||
do a special case for them.
|
||||
|
||||
20020122
|
||||
- (djm) autoconf hacking:
|
||||
|
@ -7384,4 +7387,4 @@
|
|||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.1792 2002/01/23 00:20:59 djm Exp $
|
||||
$Id: ChangeLog,v 1.1793 2002/01/23 06:54:30 mouring Exp $
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef _DEFINES_H
|
||||
#define _DEFINES_H
|
||||
|
||||
/* $Id: defines.h,v 1.77 2002/01/08 21:59:07 stevesk Exp $ */
|
||||
/* $Id: defines.h,v 1.78 2002/01/23 06:54:31 mouring Exp $ */
|
||||
|
||||
/* Necessary headers */
|
||||
|
||||
|
@ -446,7 +446,7 @@ struct winsize {
|
|||
#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
|
||||
|
||||
#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
|
||||
# define atexit(a, NULL) on_exit(a, NULL)
|
||||
# define atexit(a) on_exit(a, NULL)
|
||||
#else
|
||||
# if defined(HAVE_XATEXIT)
|
||||
# define atexit(a) xatexit(a)
|
||||
|
|
Loading…
Reference in New Issue