~ubuntu-dev/ubuntu/lucid/mutt/lucid-201002110857

« back to all changes in this revision

Viewing changes to send.c

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-06-07 17:30:03 UTC
  • mto: (16.2.1 experimental) (2.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20090607173003-rg37ui3h2bbv7wl0
Tags: upstream-1.5.19
ImportĀ upstreamĀ versionĀ 1.5.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
 
2
 * Copyright (C) 1996-2002,2004 Michael R. Elkins <me@mutt.org>
3
3
 * 
4
4
 *     This program is free software; you can redistribute it and/or modify
5
5
 *     it under the terms of the GNU General Public License as published by
27
27
#include "mime.h"
28
28
#include "mailbox.h"
29
29
#include "copy.h"
30
 
#include "mx.h"
31
30
#include "mutt_crypt.h"
32
31
#include "mutt_idna.h"
33
32
#include "url.h"
299
298
    }
300
299
    else if (ascii_strncasecmp ("message-id:", uh->data, 11) == 0)
301
300
    {
302
 
      char *tmp = mutt_extract_message_id (uh->data + 11);
 
301
      char *tmp = mutt_extract_message_id (uh->data + 11, NULL);
303
302
      if (rfc822_valid_msgid (tmp) >= 0)
304
303
      {
305
304
        FREE(&env->message_id);
1505
1504
main_loop:
1506
1505
 
1507
1506
    fcc_error = 0; /* reset value since we may have failed before */
1508
 
    mutt_pretty_mailbox (fcc);
 
1507
    mutt_pretty_mailbox (fcc, sizeof (fcc));
1509
1508
    i = mutt_compose_menu (msg, fcc, sizeof (fcc), cur);
1510
1509
    if (i == -1)
1511
1510
    {