My original query was
> Has anyone successfully built the Beta 6 distribution on an Alpha?
> While I can build Beta 5 OK, the "make check" breaks when the test
> program t_shs is executed.
Thanks to Dan Riley (Cornell), Todd Acheson (Ohio U), and Ezra Peisach (MIT)
for answers. Dan's answer is included below:
> There is a little-endian bug in the shs algorithm--I am enclosing the
> fix that was posted to krb5-bugs. SHS isn't actually used in beta 6,
> so it is completely harmless, but this should fix 'make check'.
--- shs.c.old Tue Jun 11 16:50:52 1996
+++ shs.c Tue Jun 11 16:50:59 1996
_at__at_ -219,12 +219,12 _at__at_
switch (init) {
case 0:
+ init=1;
cp = (char *) &init;
if (*cp == 1) {
init=2;
break;
}
- init=1;
/* fall through - MSB */
case 1:
return;
=======================================================================
Received on Fri Jul 19 1996 - 17:06:00 NZST