diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-07 03:19:35 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-07 03:19:35 +0000 |
commit | 03bab2861e1f601aac06ada43277c26509c8886b (patch) | |
tree | 2291d1acde7cbd9161a5debcc6c319bf3ce4b213 | |
parent | db41d2390c0f3f47541330b79e45566e3f743535 (diff) |
- (bal) Reverse logic, use __func__ first since it's C99
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | defines.h | 10 |
2 files changed, 8 insertions, 7 deletions
@@ -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 | ||
141 | 20020604 | 142 | 20020604 |
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 $ |
@@ -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 | /* |