Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open Source Tripwire 2.4.3.5 #23

Merged
merged 46 commits into from
Apr 2, 2017
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
b0b9566
Bump version; tweak install script so install-strip works when not su…
brc0x1 Mar 11, 2017
db44ff8
Add 'disable-extrawarnings' configure option to support old compilers…
brc0x1 Mar 12, 2017
306b7a7
Tweak 'make uninstall' to nuke twexes & docs
Mar 13, 2017
58dafd1
Tweak path to install.sh so 'make distcheck' works; update installer …
Mar 14, 2017
2e39db6
Comment out a known-problematic assert in zdeflate.cpp (though I have…
brc0x1 Mar 14, 2017
062523a
Add a working 'make check' target, which runs both the test suite in …
brc0x1 Mar 14, 2017
91e1971
Merge branch 'dev/2435' of https://github.com/Tripwire/tripwire-open-…
Mar 14, 2017
63168d9
Update copyright/tm notice in installer script
Mar 14, 2017
d3f859b
Address some cppcheck warnings around initializers & catching by refe…
brc0x1 Mar 15, 2017
b2f21c3
Assorted bounds checks (via flawfinder)
brc0x1 Mar 16, 2017
1fb5f33
For clarity, remove a bunch of IS_UNIX ifdefs, since configure.ac alw…
brc0x1 Mar 16, 2017
900fad8
Remove some dead code, including objectpool & Unicode-only utf8 stuff
brc0x1 Mar 16, 2017
b1147d6
Add sanity check in cFCODataSourceIterImpl::SeekToFCO() to fix a unit…
brc0x1 Mar 16, 2017
8bd86fe
Address more cppcheck warnings, mostly around assignment operators & …
brc0x1 Mar 16, 2017
aaee78c
Tweaks for 'make check': Don't assume location of perl, or existence …
brc0x1 Mar 17, 2017
2b06717
Fix some clang extended warnings: non-virtual-dtor, shadow, unneeded-…
brc0x1 Mar 17, 2017
6ea9c0b
fix debug builds in debug.cpp
brc0x1 Mar 18, 2017
2c57dd8
Update test policy files in src/parser/testfiles to (largely) match c…
brc0x1 Mar 18, 2017
a2e8214
update old 'directives.txt' policy test file for current syntax
brc0x1 Mar 19, 2017
5275975
Correctly handle rule w/ leading whitespace within a quoted path. Unc…
brc0x1 Mar 20, 2017
ea2170f
Tweak a memory alignment unit test that doesn't (and should not be ex…
brc0x1 Mar 22, 2017
4cb15a7
Remove 'util_EatAllSpaces' method, which did shady things with iterat…
brc0x1 Mar 22, 2017
5c1cfe4
Use unique_ptr instead of auto_ptr where available (and define a macr…
brc0x1 Mar 23, 2017
9c38b49
Prefer prefix ++/-- operators where possible, for performance reasons…
brc0x1 Mar 24, 2017
911e051
Fix more warnings, & make TestFCOSpec() do something useful in non-de…
brc0x1 Mar 24, 2017
8cdca39
Prefer strl* string functions over strn* ones
brc0x1 Mar 25, 2017
7ce1df0
Remove the few remaining exception specifications, since they're depr…
brc0x1 Mar 25, 2017
e04b971
Ok, actually don't use strl* string functions since they're a BSD-ism…
brc0x1 Mar 25, 2017
76868c5
Resolve assorted GCC 7 warnings
brc0x1 Mar 26, 2017
da8748b
fix file mode printing
brc0x1 Mar 26, 2017
c931a13
Disable unused tss::mbsdec()
brc0x1 Mar 26, 2017
be0b374
Tweak le_set() for clarity in msystem.cpp
brc0x1 Mar 26, 2017
cdb7310
Enable & (at least partly) fix charutil, displayencoder, & policypars…
brc0x1 Mar 27, 2017
2c03fdf
Enable/repair more unit tests, and undo an earlier change to hex_to_c…
brc0x1 Mar 27, 2017
7d66656
Build fix for tests, since you don't always have an ifstream/ofstream…
Mar 27, 2017
f549b06
Remove installer check for tar since installer doesn't actually use i…
brc0x1 Mar 28, 2017
ffd6dd8
Merge branch 'dev/2435' of https://github.com/Tripwire/tripwire-open-…
brc0x1 Mar 28, 2017
4af1375
More unit test cleanup, + fix a warning in msystem le_set()
brc0x1 Mar 28, 2017
9e1b078
Fix setting of IS_xxx OS macros for various platforms
brc0x1 Mar 29, 2017
a67d3c3
Clean up installer (remove unneeded checks, better editor & pager det…
brc0x1 Mar 31, 2017
2df8802
Update readme file
brc0x1 Mar 31, 2017
8775088
Update Changelog & fix a hyphen in ReadMe
brc0x1 Mar 31, 2017
65625c6
Tweak message about documentation location at end of install, so it p…
brc0x1 Mar 31, 2017
a0d04d8
Merge branch 'dev/2435' of https://github.com/Tripwire/tripwire-open-…
Mar 31, 2017
7b86cdd
Unit test build fix, make sure <typeinfo> is included
Mar 31, 2017
65e0a0d
Tweak unit test error reporting slightly
brc0x1 Apr 1, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/twtest/fspropcalc_t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void TestFSPropCalc()
// oh boy! I finally get to test property calculation!
d.TraceDebug("Creating FCO c:\\temp\\foo.bin\n");

std::ofstream fstr(foo_bin);
std::ofstream fstr(foo_bin.c_str());
if(fstr.bad())
{
d.TraceError("Unable to create test file %s!\n", foo_bin.c_str());
Expand Down
2 changes: 1 addition & 1 deletion src/twtest/policyparser_t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void test_policy_file(const std::string& polfile)
pol_path.append(polfile);

std::ifstream in;
in.open(pol_path);
in.open(pol_path.c_str());
if( ! in.good() )
throw eParserHelper( _T("couldn't open test file") );

Expand Down