1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/security/bro/files/patch-src-input-readers-Raw.cc
Raphael Kubo da Costa cfff7adfbc - Fix the build with libc++.
- Convert to new-new OPTIONS framework.
- Use new *_DEPENDS formats.
- Fix LICENSE.

PR:		ports/185455
Submitted by:	Craig Leres <leres@ee.lbl.gov> (maintainer)
2014-01-06 19:31:52 +00:00

12 lines
516 B
C++

--- src/input/readers/Raw.cc.orig 2014-01-06 21:04:06.000000000 +0200
+++ src/input/readers/Raw.cc 2014-01-06 21:04:13.000000000 +0200
@@ -352,7 +352,7 @@
fname = source.substr(0, fname.length() - 1);
}
- map<const char*, const char*>::const_iterator it = info.config.find("stdin"); // data that is sent to the child process
+ ReaderInfo::config_map::const_iterator it = info.config.find("stdin"); // data that is sent to the child process
if ( it != info.config.end() )
{
stdin_string = it->second;