diff options
author | Kamil Dudka <kdudka@redhat.com> | 2015-02-12 08:34:40 +0100 |
---|---|---|
committer | Kamil Dudka <kdudka@redhat.com> | 2015-02-12 08:39:19 +0100 |
commit | aba2c4dca2601cb942f47ea9622e01001c01b799 (patch) | |
tree | 66deaa8b2c1f56b02c4360bce9bde4106af61141 /lib | |
parent | c1878e8f5242ad2f01e02e0be9255534f2085af9 (diff) |
openssl: fix a compile-time warning
lib/vtls/openssl.c:1450:7: warning: extra tokens at end of #endif directive
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vtls/openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index d4a6e12ad..55ab3fee1 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -1447,7 +1447,7 @@ end: return result; } -#endif/ +#endif #endif /* USE_SSLEAY */ |