Skip to content
Snippets Groups Projects
Commit 70d57bb4 authored by Niels Möller's avatar Niels Möller
Browse files

Typo fix, spotted by Bruce Korb.

parent 9d2d8dda
No related branches found
No related tags found
No related merge requests found
...@@ -146,7 +146,7 @@ main (int argc, char **argv) ...@@ -146,7 +146,7 @@ main (int argc, char **argv)
password_length = fread (password, 1, sizeof(password), stdin); password_length = fread (password, 1, sizeof(password), stdin);
if (password_length == sizeof(password)) if (password_length == sizeof(password))
die ("Password input to long. Current limit is %d characters.\n", die ("Password input too long. Current limit is %d characters.\n",
(int) sizeof(password) - 1); (int) sizeof(password) - 1);
if (ferror (stdin)) if (ferror (stdin))
die ("Reading password input failed: %s.\n", strerror (errno)); die ("Reading password input failed: %s.\n", strerror (errno));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment