bugfix in findCertificates function
authorKarl-Heinz Zimmer <khz@kde.org>
Sat, 9 Mar 2002 16:46:36 +0000 (16:46 +0000)
committerKarl-Heinz Zimmer <khz@kde.org>
Sat, 9 Mar 2002 16:46:36 +0000 (16:46 +0000)
gpgmeplug/gpgmeplug.c

index f973fde45d50b44f1c5d84e3da7d9e0be5ff126f..8a7772bf6bc40e91e056da7c70baf2b21f141c80 100644 (file)
@@ -1208,7 +1208,7 @@ bool findCertificates( const char* addressee, char** certificates )
         s2 = gpgme_key_get_string_attr (rKey, GPGME_ATTR_FPR, NULL, 0);
         if( s2 ) {
           strcat( *certificates, s );
-          strcat( *certificates, "(" );
+          strcat( *certificates, "    (" );
           strcat( *certificates, s2 );
           strcat( *certificates, ")\1" );
         }