unicon (3.0.4-13) unicon/server/TLS_MemFile.cpp

Summary

 unicon/server/TLS_MemFile.cpp |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

    
download this patch

Patch contents

--- unicon-3.0.4.orig/unicon/server/TLS_MemFile.cpp
+++ unicon-3.0.4/unicon/server/TLS_MemFile.cpp
@@ -23,7 +23,7 @@
  * Author: see CREDITS
  */
 
-#include <iostream.h>
+#include <iostream>
 #include <assert.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -32,6 +32,8 @@
 
 #include <TLS_MemFile.hpp>
 
+using namespace std;
+
 TLS_CMemFile::TLS_CMemFile (u_long max0)
 {
     buf = (char *) malloc (max0);