From bd217a78bb11a9b9f28bb39040e1d2f644234ca5 Mon Sep 17 00:00:00 2001 From: Fridrich Štrba Date: Fri, 11 Feb 2011 17:05:22 +0100 Subject: some more hacks of exported symbols --- soltools/ldump/ldump.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/soltools/ldump/ldump.cxx b/soltools/ldump/ldump.cxx index 4d5a8f1b811e..d85022495ee1 100644 --- a/soltools/ldump/ldump.cxx +++ b/soltools/ldump/ldump.cxx @@ -176,7 +176,7 @@ bool LibDump::Dump() } } - if ((aBuf[0] =='?') || !strncmp(aBuf, "__CT",4)) + if (aBuf[0] =='?') { nLen = (int) strlen(aBuf); memset( aName, 0, sizeof( aName ) ); @@ -194,6 +194,7 @@ bool LibDump::Dump() } else if ( bAll == true && strncmp(aBuf, "__real@", 7) != 0 && + strncmp(aBuf, "__CT",4) != 0 && strncmp(aBuf, "__TI3?", 6) != 0 ) { int nPreLen = (int) strlen( cAPrefix ); -- cgit