From 6c85e3b73947b098fac99ea14dcfc3b3b08d4356 Mon Sep 17 00:00:00 2001 From: eidheim Date: Mon, 23 Feb 2015 09:49:32 +0100 Subject: [PATCH] Minor fix --- https_examples.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/https_examples.cpp b/https_examples.cpp index 1d97215..40b60e2 100644 --- a/https_examples.cpp +++ b/https_examples.cpp @@ -117,7 +117,7 @@ int main() { size_t read_length; while((read_length=ifs.read(&buffer[0], buffer_size).gcount())>0) { ss.write(&buffer[0], read_length); - response << ss.rdbuf() << HttpServer::flush; + response << ss.rdbuf() << HttpsServer::flush; } } else