summaryrefslogtreecommitdiffstats
path: root/test/danetest.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-01-10 23:28:09 +0000
committerDr. Stephen Henson <steve@openssl.org>2016-01-10 23:39:13 +0000
commit71405d683c979178618363b618f527ebdbea7854 (patch)
tree195eb6277d0ff169a46eb4e1668f600f4a47f843 /test/danetest.c
parent1918e01c9f915e2eba31a5e2f86f0a5daa4fafb6 (diff)
fix shadow warning
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/danetest.c')
-rw-r--r--test/danetest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/danetest.c b/test/danetest.c
index 202be20d65..02d0f79efc 100644
--- a/test/danetest.c
+++ b/test/danetest.c
@@ -88,7 +88,7 @@ static int restore_errno(void)
return ret;
}
-static void usage(void)
+static void test_usage(void)
{
fprintf(stderr, "usage: %s: danetest basedomain CAfile tlsafile\n", progname);
}
@@ -465,7 +465,7 @@ int main(int argc, char *argv[])
progname = argv[0];
if (argc != 4) {
- usage();
+ test_usage();
EXIT(1);
}
basedomain = argv[1];