]> granicus.if.org Git - neomutt/commitdiff
S/MIME fixes from Mike Schiraldi.
authorThomas Roessler <roessler@does-not-exist.org>
Thu, 7 Feb 2002 15:45:06 +0000 (15:45 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Thu, 7 Feb 2002 15:45:06 +0000 (15:45 +0000)
smime.c

diff --git a/smime.c b/smime.c
index fe57564583d300431999cee89f0f2d2a5cd86110..b207483a875265f31d947a2e191b43b30af03814 100644 (file)
--- a/smime.c
+++ b/smime.c
@@ -374,7 +374,7 @@ static void smime_entry (char *s, size_t l, MUTTMENU * menu, int num)
       truststate = N_("Unknown   ");
   }
   if (this.public)
-    snprintf(s, l, "  0x%.8X%i %s %-35.35s %s", this.hash, this.suffix, _(truststate), this.email, this.nick);
+    snprintf(s, l, "  0x%.8X%i %s %-35.35s %s", this.hash, this.suffix, truststate, this.email, this.nick);
   else
     snprintf(s, l, "  0x%.8X%i %-35.35s %s", this.hash, this.suffix, this.email, this.nick);
 }
@@ -540,7 +540,7 @@ char *smime_get_field_from_db (char *mailbox, char *query, short public, short m
      specs on their CA-directory.
 
   */
-  snprintf (cert_path, sizeof (cert_path),_("%s/.index"),
+  snprintf (cert_path, sizeof (cert_path), "%s/.index",
            (public ? NONULL(SmimeCertificates) : NONULL(SmimeKeys)));
 
   if (!stat (cert_path, &info))
@@ -1284,7 +1284,7 @@ static int smime_add_certificate (char *certificate, char *mailbox)
 
   while (1)
   {
-    snprintf (dest, sizeof (dest), _("%s/%s.%d"), NONULL(SmimeCertificates),
+    snprintf (dest, sizeof (dest), "%s/%s.%d", NONULL(SmimeCertificates),
              hashval, i);
 
     if (stat (dest, &info))