Add missing static declarations in dtlsv1listentest.c
authorViktor Dukhovni <openssl-users@dukhovni.org>
Sat, 6 Feb 2016 02:25:05 +0000 (21:25 -0500)
committerViktor Dukhovni <openssl-users@dukhovni.org>
Sat, 6 Feb 2016 04:22:02 +0000 (23:22 -0500)
commit8143aa6f3474bbe103b0bd0ea79944803597990b
treeaa587bba683987cfce9abcc50e0f1a1d3aa712cb
parenta9052bed9e485a614dd44c6ae8f8c0e84c3205df
Add missing static declarations in dtlsv1listentest.c

Clang rightly does not like extern symbols that are not declared
in any header file, as typically these are not intended for global
visibility and are exposed in error.  This was indeed the case with
various file-scope objects in dtlsv1listentest.c.

Reviewed-by: Richard Levitte <levitte@openssl.org>
test/dtlsv1listentest.c