- (bal) Reverse logic, use __func__ first since it's C99

This commit is contained in:
Ben Lindstrom 2002-06-07 03:19:35 +00:00
parent db41d2390c
commit 03bab2861e
2 changed files with 8 additions and 7 deletions

View File

@ -137,6 +137,7 @@
authentication to different files. authentication to different files.
- (bal) ssh-keysign should build and install correctly now. Phase two - (bal) ssh-keysign should build and install correctly now. Phase two
would be to clean out any dead wood and disable ssh setuid on install. would be to clean out any dead wood and disable ssh setuid on install.
- (bal) Reverse logic, use __func__ first since it's C99
20020604 20020604
- (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed - (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed
@ -821,4 +822,4 @@
- (stevesk) entropy.c: typo in debug message - (stevesk) entropy.c: typo in debug message
- (djm) ssh-keygen -i needs seeded RNG; report from markus@ - (djm) ssh-keygen -i needs seeded RNG; report from markus@
$Id: ChangeLog,v 1.2184 2002/06/07 03:11:38 mouring Exp $ $Id: ChangeLog,v 1.2185 2002/06/07 03:19:35 mouring Exp $

View File

@ -1,7 +1,7 @@
#ifndef _DEFINES_H #ifndef _DEFINES_H
#define _DEFINES_H #define _DEFINES_H
/* $Id: defines.h,v 1.89 2002/04/25 17:56:07 stevesk Exp $ */ /* $Id: defines.h,v 1.90 2002/06/07 03:19:36 mouring Exp $ */
/* Constants */ /* Constants */
@ -460,10 +460,10 @@ struct winsize {
# define OPENSSL_free(x) Free(x) # define OPENSSL_free(x) Free(x)
#endif #endif
#if defined(HAVE___func__) #if !defined(HAVE___func__) && defined(HAVE___FUNCTION__)
# define __FUNCTION__ __func__ # define __func__ __FUNCTION__
#elif !defined(HAVE___FUNCTION__) #elif !defined(HAVE___func__)
# define __FUNCTION__ "" # define __func__ ""
#endif #endif
/* /*