chiark / gitweb /
Protocol change: Initiate key setup on incoming packets, not outgoing ones
[secnet.git] / sha1.c
diff --git a/sha1.c b/sha1.c
index 7b09f6efb48cbc0c4b99fbd2637e820f51e76ca3..a0f26e8be6facdadfed882d1cf4dd65fd6da9523 100644 (file)
--- a/sha1.c
+++ b/sha1.c
@@ -294,7 +294,7 @@ static void *sha1_init(void)
     return ctx;
 }
 
-static void sha1_update(void *sst, uint8_t const *buf, uint32_t len)
+static void sha1_update(void *sst, const void *buf, int32_t len)
 {
     SHA1_CTX *ctx=sst;