- (bal) Reverse logic, use __func__ first since it's C99
This commit is contained in:
parent
db41d2390c
commit
03bab2861e
|
@ -134,9 +134,10 @@
|
||||||
- (bal) Forgot to add msg.c Makefile.in.
|
- (bal) Forgot to add msg.c Makefile.in.
|
||||||
- (bal) monitor_mm.c typos.
|
- (bal) monitor_mm.c typos.
|
||||||
- (bal) Refixed auth2.c. It was never fully commited while spliting out
|
- (bal) Refixed auth2.c. It was never fully commited while spliting out
|
||||||
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 $
|
||||||
|
|
10
defines.h
10
defines.h
|
@ -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
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue