diff options
Diffstat (limited to 'korn/pop3_proto.cpp')
-rw-r--r-- | korn/pop3_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/korn/pop3_proto.cpp b/korn/pop3_proto.cpp index c4ecd6b16..b42a63ec2 100644 --- a/korn/pop3_proto.cpp +++ b/korn/pop3_proto.cpp @@ -67,7 +67,7 @@ void Pop3_Protocol::readEntries( TQMap< TQString, TQString >* map, TQMap< TQStri if( map->contains( "ssl" ) && *map->find( "ssl" ) == "true" ) map->insert( "encryption", "ssl" ); if( metadata->contains( "tls" ) ) - map->insert( "encryption", TQString( "tls=%1" ).tqarg( *metadata->find( "tls" ) ) ); + map->insert( "encryption", TQString( "tls=%1" ).arg( *metadata->find( "tls" ) ) ); if( metadata->contains( "auth" ) ) map->insert( "auth", TQString( "auth=APOP" ) ); } |