summaryrefslogtreecommitdiff
path: root/packaging/freebsd/security/monkeysphere/files/patch-src_share_keytrans
blob: 9d584acbeed6d2724de871db87ca00ba434d69a9 (plain)
  1. --- src/share/keytrans 2009-03-01 13:39:50.000000000 -0500
  2. +++ src/share/keytrans 2009-03-10 00:39:53.681890554 -0400
  3. @@ -199,7 +199,7 @@
  4. sub simple_checksum {
  5. my $bytes = shift;
  6. - return unpack("%32W*",$bytes) % 65536;
  7. + return unpack("%32U*",$bytes) % 65536;
  8. }
  9. # calculate the multiplicative inverse of a mod b this is euclid's