From ea81a225299c27ac65bd78ef0765fd33d1e5c792 Mon Sep 17 00:00:00 2001 From: bick Date: Fri, 26 Jul 2013 14:12:33 -0700 Subject: [PATCH] =?UTF-8?q?adding=20include=20of=20openssl/err.h=20to=20fi?= =?UTF-8?q?x=20errors=20when=20NO=5FSSL=5FDL=20is=20defined:=20mongoose.c:?= =?UTF-8?q?4680:23:=20error:=20=E2=80=98ERR=5Fget=5Ferror=E2=80=99=20was?= =?UTF-8?q?=20not=20declared=20in=20this=20scope=20mongoose.c:4681:52:=20e?= =?UTF-8?q?rror:=20=E2=80=98ERR=5Ferror=5Fstring=E2=80=99=20was=20not=20de?= =?UTF-8?q?clared=20in=20this=20scope?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mongoose.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mongoose.c b/mongoose.c index b0860cfc..2a8ee3d5 100644 --- a/mongoose.c +++ b/mongoose.c @@ -308,6 +308,7 @@ static const char *http_500_error = "Internal Server Error"; #if defined(NO_SSL_DL) #include +#include #else // SSL loaded dynamically from DLL. // I put the prototypes here to be independent from OpenSSL source installation.