Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Brian Smith
nettle
Commits
70d57bb4
Commit
70d57bb4
authored
Sep 03, 2013
by
Niels Möller
Browse files
Typo fix, spotted by Bruce Korb.
parent
9d2d8dda
Changes
1
Hide whitespace changes
Inline
Side-by-side
tools/nettle-pbkdf2.c
View file @
70d57bb4
...
...
@@ -146,7 +146,7 @@ main (int argc, char **argv)
password_length
=
fread
(
password
,
1
,
sizeof
(
password
),
stdin
);
if
(
password_length
==
sizeof
(
password
))
die
(
"Password input to long. Current limit is %d characters.
\n
"
,
die
(
"Password input to
o
long. Current limit is %d characters.
\n
"
,
(
int
)
sizeof
(
password
)
-
1
);
if
(
ferror
(
stdin
))
die
(
"Reading password input failed: %s.
\n
"
,
strerror
(
errno
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment