aboutsummaryrefslogtreecommitdiff
path: root/mail/mutt-devel/files/patch-smime-find-keys
blob: e0dce29cb6be1ff84cc23de7a045452637a926e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- smime.c.orig2	Sat Feb 19 13:49:51 2005
+++ smime.c	Sun Feb 20 08:58:35 2005
@@ -464,8 +464,8 @@
       }
     }
     if (hash) {
-      fname = safe_malloc(14); /* Hash + '.' + Suffix + \n + \0 */
-      sprintf(fname, "%.8x.%i\n", Table[cur].hash, Table[cur].suffix);
+      fname = safe_malloc(13); /* Hash + '.' + Suffix + \0 */
+      sprintf(fname, "%.8x.%i", Table[cur].hash, Table[cur].suffix);
     }
     else fname = NULL;