]> git.pld-linux.org Git - packages/mutt.git/commitdiff
- bugfix mutt-1_3_18i-2
authorSebastian Zagrodzki <sebek@zagrodzki.net>
Wed, 30 May 2001 12:03:13 +0000 (12:03 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    mutt-in_reply_to.patch -> 1.1

mutt-in_reply_to.patch [new file with mode: 0644]

diff --git a/mutt-in_reply_to.patch b/mutt-in_reply_to.patch
new file mode 100644 (file)
index 0000000..34b208b
--- /dev/null
@@ -0,0 +1,15 @@
+--- mutt-1.3.18/send.c Thu Apr 26 15:17:49 2001
++++ mutt-1.3.18-p/send.c       Wed May 30 13:30:10 2001
+@@ -630,8 +630,10 @@
+   else
+   {
+     env->references = mutt_make_references (curenv);
+-    env->in_reply_to = mutt_new_list ();
+-    env->in_reply_to->data = safe_strdup (curenv->message_id);
++    if (curenv->message_id) {
++      env->in_reply_to = mutt_new_list ();
++      env->in_reply_to->data = safe_strdup (curenv->message_id);
++    }
+   }
+ }
This page took 0.043305 seconds and 4 git commands to generate.