commit c38ef9e7b60d5a3cab522dc1fe3c7b97e77646ea from: Russ Cox date: Wed Oct 05 20:23:01 2011 UTC libsec: fix dsagen 64-bit bug commit - c5d1b221709e5a51abe96b19d85ac5c16cc0d562 commit + c38ef9e7b60d5a3cab522dc1fe3c7b97e77646ea blob - 72546f15e25ecf8d40b4fff1cb8c9e579897547e blob + 310090d3e1c382a3d8499085a7d420f9bfd57b83 --- src/libsec/port/dsaprimes.c +++ src/libsec/port/dsaprimes.c @@ -12,7 +12,7 @@ static void Hrand(uchar *s) { - ulong *u = (ulong*)s; + uint32 *u = (uint32*)s; *u++ = fastrand(); *u++ = fastrand(); *u++ = fastrand();