Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cr-marcstevens/sha1collisiondetection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Wilk <jwilk@jwilk.net>2017-02-23 21:06:26 +0300
committerJakub Wilk <jwilk@jwilk.net>2017-02-23 21:06:26 +0300
commit7b4c9124afed4e88947fa618067e79ed4888b299 (patch)
treee7dae5afc450f2e144b5a1ff463c8ad0ad3dae98
parent40ccf5e3537ff6b2e5ceac5747f376a2ef430bec (diff)
Fix typo
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 92de0d9..4a1fa79 100644
--- a/src/main.c
+++ b/src/main.c
@@ -45,7 +45,7 @@ int main(int argc, char** argv)
return 1;
}
- // feed file through SHA-1 update fuction
+ // feed file through SHA-1 update function
while (1)
{
size=fread(buffer,1,65536,fd);