summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/kleo/cryptobackendfactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/kleo/cryptobackendfactory.cpp')
-rw-r--r--certmanager/lib/kleo/cryptobackendfactory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/certmanager/lib/kleo/cryptobackendfactory.cpp b/certmanager/lib/kleo/cryptobackendfactory.cpp
index 0d3cb1e9..295c05c6 100644
--- a/certmanager/lib/kleo/cryptobackendfactory.cpp
+++ b/certmanager/lib/kleo/cryptobackendfactory.cpp
@@ -211,7 +211,7 @@ static const char * defaultBackend( const char * proto ) {
{ "Chiasmus", "chiasmus" },
};
for ( unsigned int i = 0 ; i < sizeof defaults / sizeof *defaults ; ++i )
- if ( qstricmp( proto, defaults[i].proto ) == 0 )
+ if ( tqstricmp( proto, defaults[i].proto ) == 0 )
return defaults[i].backend;
return 0;
}
@@ -238,10 +238,10 @@ namespace {
CaseInsensitiveString( const char * s ) : m( s ) {}
#define make_operator( op ) \
bool operator op( const CaseInsensitiveString & other ) const { \
- return qstricmp( m, other.m ) op 0; \
+ return tqstricmp( m, other.m ) op 0; \
} \
bool operator op( const char * other ) const { \
- return qstricmp( m, other ) op 0; \
+ return tqstricmp( m, other ) op 0; \
}
make_operator( == )
make_operator( != )