]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - sshsha.c
Fix a couple of stupid typos in the session-saving code.
[PuTTY.git] / sshsha.c
index 4bac4fdc528914026fd8e17cec5b5233eab9b9d3..d8fc56947016181b871b31e03169644fdef2882c 100644 (file)
--- a/sshsha.c
+++ b/sshsha.c
@@ -13,7 +13,7 @@
 
 #define rol(x,y) ( ((x) << (y)) | (((uint32)x) >> (32-y)) )
 
-void SHA_Core_Init(uint32 h[5])
+static void SHA_Core_Init(uint32 h[5])
 {
     h[0] = 0x67452301;
     h[1] = 0xefcdab89;