[1082] in Kerberos-V5-bugs
Alpha OSF/1 broken in latest sources....
daemon@ATHENA.MIT.EDU (epeisach@MIT.EDU)
Wed Feb 8 11:51:17 1995
From: epeisach@MIT.EDU
Date: Wed, 8 Feb 1995 11:51:08 -0500
To: krb5-bugs@MIT.EDU
Ted, when you put the definition of KRB_INT32 into des425 sources, the
change that is was required for really was in the crypto/des sources...
Here is the required change, based on current sources...
===================================================================
RCS file: /mit/krb5/.cvsroot/src/lib/crypto/des/des.h,v
retrieving revision 1.2
diff -c -r1.2 des.h
*** 1.2 1995/01/26 04:09:33
--- des.h 1995/02/08 16:12:52
***************
*** 16,23 ****
--- 16,31 ----
#include "k5-int.h"
#ifndef KRB_INT32
+ #if (SIZEOF_LONG == 4)
#define KRB_INT32 long
+ #elif (SIZEOF_INT == 4)
+ #define KRB_INT32 int
+ #elif (SIZEOF_SHORT == 4)
+ #define KRB_INT32 short
+ #else
+ ?== No 32 bit type available
#endif
+ #endif /* !KRB_INT32 */
#ifndef KRB_UINT32
#define KRB_UINT32 unsigned KRB_INT32
#endif