diff options
-rw-r--r-- | composer/ChangeLog | 3 | ||||
-rw-r--r-- | composer/e-msg-composer-attachment-bar.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 1d780fd234..ef504d4382 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,5 +1,8 @@ 2001-10-05 Larry Ewing <lewing@ximian.com> + * e-msg-composer-attachment-bar.c + (e_msg_composer_attachment_bar_find_message): fix cut&pasteo. + * e-msg-composer-attachment.c (e_msg_composer_attachment_new): remove unused variable. diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c index 5cb8ed0244..259d1709ec 100644 --- a/composer/e-msg-composer-attachment-bar.c +++ b/composer/e-msg-composer-attachment-bar.c @@ -850,7 +850,7 @@ e_msg_composer_attachment_bar_find_message (EMsgComposerAttachmentBar *bar, char part_location = camel_mime_part_get_content_location (part); g_warning ("url: %s, part_id: %s\n", url, part_id); - if (part_id && !strcmp (part_location, url)) + if (part_location && !strcmp (part_location, url)) return part; } |