summaryrefslogtreecommitdiffstats
path: root/libkmime/tests
diff options
context:
space:
mode:
Diffstat (limited to 'libkmime/tests')
-rw-r--r--libkmime/tests/test_kmime_codec.cpp6
-rw-r--r--libkmime/tests/test_kmime_header_parsing.cpp2
-rw-r--r--libkmime/tests/test_mdn.cpp2
3 files changed, 5 insertions, 5 deletions
diff --git a/libkmime/tests/test_kmime_codec.cpp b/libkmime/tests/test_kmime_codec.cpp
index 832ea2c3c..7417c8aea 100644
--- a/libkmime/tests/test_kmime_codec.cpp
+++ b/libkmime/tests/test_kmime_codec.cpp
@@ -138,11 +138,11 @@ int main( int argc, char * argv[] ) {
verbose = true;
break;
case 9: // usage-pattern
- if ( !qstricmp( "kio", optarg ) )
+ if ( !tqstricmp( "kio", optarg ) )
pattern = Kio;
- else if ( !qstricmp( "chunkwise", optarg ) )
+ else if ( !tqstricmp( "chunkwise", optarg ) )
pattern = ChunkWise;
- else if ( !qstricmp( "convenience-qba", optarg ) )
+ else if ( !tqstricmp( "convenience-qba", optarg ) )
pattern = ConvenienceTQBA;
else {
cerr << "Unknown usage pattern \"" << optarg << "\"" << endl;
diff --git a/libkmime/tests/test_kmime_header_parsing.cpp b/libkmime/tests/test_kmime_header_parsing.cpp
index 7c93ec108..091b48a65 100644
--- a/libkmime/tests/test_kmime_header_parsing.cpp
+++ b/libkmime/tests/test_kmime_header_parsing.cpp
@@ -116,7 +116,7 @@ int main( int argc, char * argv[] ) {
int index;
for ( index = 0 ; index < tokenTypesLen ; ++index )
- if ( !qstricmp( tokenTypes[index], argument ) ) break;
+ if ( !tqstricmp( tokenTypes[index], argument ) ) break;
if ( index >= tokenTypesLen ) usage( "unknown token type" );
diff --git a/libkmime/tests/test_mdn.cpp b/libkmime/tests/test_mdn.cpp
index fa9290f20..e4a132d8d 100644
--- a/libkmime/tests/test_mdn.cpp
+++ b/libkmime/tests/test_mdn.cpp
@@ -52,7 +52,7 @@ int main( int argc, char * argv[] ) {
long_options, &option_index );
if ( c == -1 ) break;
-#define EQUALS(x) !qstricmp( optarg, x )
+#define EQUALS(x) !tqstricmp( optarg, x )
switch ( c ) {