aboutsummaryrefslogtreecommitdiffstats
path: root/mail/balsa2/files/patch-ai
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-12-25 01:34:58 +0000
committerSteve Price <steve@FreeBSD.org>1999-12-25 01:34:58 +0000
commit41d9a6e0804f16bdb398ecad02751354f511952d (patch)
tree5d742f5e08181b474866e67a95cee557768032a4 /mail/balsa2/files/patch-ai
parentde9376111657325072e7923081c7c652ffea7d1a (diff)
Update to version 0.6.0.
PR: 15665 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'mail/balsa2/files/patch-ai')
-rw-r--r--mail/balsa2/files/patch-ai20
1 files changed, 20 insertions, 0 deletions
diff --git a/mail/balsa2/files/patch-ai b/mail/balsa2/files/patch-ai
new file mode 100644
index 000000000000..ff6f252bd129
--- /dev/null
+++ b/mail/balsa2/files/patch-ai
@@ -0,0 +1,20 @@
+--- libmutt/rfc1524.c.orig Fri Jan 3 23:18:25 1997
++++ libmutt/rfc1524.c Thu Dec 23 05:14:52 1999
+@@ -455,7 +455,7 @@
+ if (s[0] == '\0')
+ {
+ snprintf (s, l, "%s/muttXXXXXX", buf);
+- mktemp (s);
++ mkstemp (s);
+ }
+ else
+ {
+@@ -466,7 +466,7 @@
+ if ((period = strrchr (tmp, '.')) != NULL)
+ *period = 0;
+ snprintf (s, l, "%s/%s.XXXXXX", buf, tmp);
+- mktemp (s);
++ mkstemp (s);
+ if (period != NULL)
+ {
+ *period = '.';