HEX
Server: Apache/2.4.41 (FreeBSD) OpenSSL/1.0.2s mod_fcgid/2.3.9
System: FreeBSD salazo 12.0-RELEASE-p1303-ZFS hostBSD 12.0-RELEASE-p1303-ZFS DMR amd64
User: admin (1000)
PHP: 7.4.3
Disabled: NONE
Upload Files
File: /usr/ports/net/netmap/files/patch-netmap__netmap.c
--- netmap/netmap.c.orig
+++ netmap/netmap.c
@@ -1,4 +1,4 @@
-#include <strstream>
+#include <sstream>
 #include <iostream>
 #include <fstream>
 
@@ -18,7 +18,7 @@
 Dbgfile dbgs;
 int cdb = 1;
 
-static void copy_line(strstream& os, istream& inf) 
+static void copy_line(stringstream& os, istream& inf) 
 {
     string result;
 
@@ -67,7 +67,7 @@
     int nr_hops = 0;
     int invalid_hosts_found = 0;
     while(inf && !inf.eof()) {
-	strstream line;
+	stringstream line;
 	copy_line(line, inf);
 	
 	if(max_hops && ++nr_hops > max_hops) {