Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wim Lewis
nettle
Commits
93733cfe
Commit
93733cfe
authored
Nov 21, 2005
by
Niels Möller
Browse files
(main): Fixed check for -v option. Spotted by Goran K.
Rev: src/nettle/testsuite/testutils.c:1.29
parent
beef3c5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
testsuite/testutils.c
View file @
93733cfe
...
...
@@ -147,7 +147,7 @@ main(int argc, char **argv)
{
if
(
argc
>
1
)
{
if
(
argc
==
2
&&
strcmp
(
argv
[
1
],
"-v"
))
if
(
argc
==
2
&&
!
strcmp
(
argv
[
1
],
"-v"
))
verbose
=
1
;
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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