Fixed some typos, courtesy of codespell

This commit is contained in:
Tobias Brunner
2019-08-28 14:03:41 +02:00
parent 82cd511cc9
commit 17c9972252
13 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -45,13 +45,13 @@ int main(int argc, char *argv[])
if (!enum_from_name(hash_algorithm_short_names, argv[1], &alg))
{
fprintf(stderr, "unknown hash algorthm: %s\n", argv[1]);
fprintf(stderr, "unknown hash algorithm: %s\n", argv[1]);
return 1;
}
hasher = lib->crypto->create_hasher(lib->crypto, alg);
if (!hasher)
{
fprintf(stderr, "hash algorthm not supported: %N\n",
fprintf(stderr, "hash algorithm not supported: %N\n",
hash_algorithm_names, alg);
return 1;
}