Line 0
Link Here
|
|
|
1 |
--- smime.c.orig2 Sat Feb 19 13:49:51 2005 |
2 |
+++ smime.c Sun Feb 20 08:58:35 2005 |
3 |
@@ -464,8 +464,8 @@ |
4 |
} |
5 |
} |
6 |
if (hash) { |
7 |
- fname = safe_malloc(14); /* Hash + '.' + Suffix + \n + \0 */ |
8 |
- sprintf(fname, "%.8x.%i\n", Table[cur].hash, Table[cur].suffix); |
9 |
+ fname = safe_malloc(13); /* Hash + '.' + Suffix + \0 */ |
10 |
+ sprintf(fname, "%.8x.%i", Table[cur].hash, Table[cur].suffix); |
11 |
} |
12 |
else fname = NULL; |
13 |
|