Fix unused goto label gcc warning
authorViktor Szakats <vszakats@users.noreply.github.com>
Tue, 10 Sep 2019 22:47:57 +0000 (22:47 +0000)
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Thu, 10 Oct 2019 17:05:05 +0000 (19:05 +0200)
commitbe66a15cc1a4c3cc68fa854ceea321ca57f96304
tree1db82710956e36f00af10bd4c894234f941cb4ef
parent99435164ac55fda18922e278316ad76305f338ad
Fix unused goto label gcc warning

On systems with undefined AI_ADDRCONFIG and AI_NUMERICHOST:

x86_64-w64-mingw32-gcc  -I. -Icrypto/include -Iinclude -m64 -Wall -O3 -fno-ident ...
crypto/bio/b_addr.c: In function 'BIO_lookup_ex':
crypto/bio/b_addr.c:699:7: warning: label 'retry' defined but not used [-Wunused-label]
       retry:
       ^~~~~

Regression from: 3f91ede9aea70774d9b5d509bc76d484ebaff6aa

Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/9856)
crypto/bio/b_addr.c