summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-07 03:19:35 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-07 03:19:35 +0000
commit03bab2861e1f601aac06ada43277c26509c8886b (patch)
tree2291d1acde7cbd9161a5debcc6c319bf3ce4b213
parentdb41d2390c0f3f47541330b79e45566e3f743535 (diff)
- (bal) Reverse logic, use __func__ first since it's C99
-rw-r--r--ChangeLog5
-rw-r--r--defines.h10
2 files changed, 8 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 776685fa7..285918544 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -134,9 +134,10 @@
134 - (bal) Forgot to add msg.c Makefile.in. 134 - (bal) Forgot to add msg.c Makefile.in.
135 - (bal) monitor_mm.c typos. 135 - (bal) monitor_mm.c typos.
136 - (bal) Refixed auth2.c. It was never fully commited while spliting out 136 - (bal) Refixed auth2.c. It was never fully commited while spliting out
137 authentication to different files. 137 authentication to different files.
138 - (bal) ssh-keysign should build and install correctly now. Phase two 138 - (bal) ssh-keysign should build and install correctly now. Phase two
139 would be to clean out any dead wood and disable ssh setuid on install. 139 would be to clean out any dead wood and disable ssh setuid on install.
140 - (bal) Reverse logic, use __func__ first since it's C99
140 141
14120020604 14220020604
142 - (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed 143 - (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed
@@ -821,4 +822,4 @@
821 - (stevesk) entropy.c: typo in debug message 822 - (stevesk) entropy.c: typo in debug message
822 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 823 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
823 824
824$Id: ChangeLog,v 1.2184 2002/06/07 03:11:38 mouring Exp $ 825$Id: ChangeLog,v 1.2185 2002/06/07 03:19:35 mouring Exp $
diff --git a/defines.h b/defines.h
index 954366f3a..1f52c545c 100644
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
1#ifndef _DEFINES_H 1#ifndef _DEFINES_H
2#define _DEFINES_H 2#define _DEFINES_H
3 3
4/* $Id: defines.h,v 1.89 2002/04/25 17:56:07 stevesk Exp $ */ 4/* $Id: defines.h,v 1.90 2002/06/07 03:19:36 mouring Exp $ */
5 5
6 6
7/* Constants */ 7/* Constants */
@@ -460,10 +460,10 @@ struct winsize {
460# define OPENSSL_free(x) Free(x) 460# define OPENSSL_free(x) Free(x)
461#endif 461#endif
462 462
463#if defined(HAVE___func__) 463#if !defined(HAVE___func__) && defined(HAVE___FUNCTION__)
464# define __FUNCTION__ __func__ 464# define __func__ __FUNCTION__
465#elif !defined(HAVE___FUNCTION__) 465#elif !defined(HAVE___func__)
466# define __FUNCTION__ "" 466# define __func__ ""
467#endif 467#endif
468 468
469/* 469/*