diff options
| -rw-r--r-- | appl/cmd/limbo/types.b | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appl/cmd/limbo/types.b b/appl/cmd/limbo/types.b index 467efa65..6b1802e5 100644 --- a/appl/cmd/limbo/types.b +++ b/appl/cmd/limbo/types.b @@ -3189,10 +3189,10 @@ sign(d: ref Decl): int print("%s\n", string sig[:sigend]); } - md5sig := array[Keyring->MD5dlen] of {* => byte 0}; + md5sig := array[Crypt->MD5dlen] of {* => byte 0}; md5(sig, sigend, md5sig, nil); - for(i := 0; i < Keyring->MD5dlen; i += 4) + for(i := 0; i < Crypt->MD5dlen; i += 4) t.sig ^= int md5sig[i+0] | (int md5sig[i+1]<<8) | (int md5sig[i+2]<<16) | (int md5sig[i+3]<<24); if(debug['S']) |
