projects
/
apps
/
madmutt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a44e40
)
fix regression introduced in 73359dc55ff8f4da32149f7270f7ceaccd658256.
author
Pierre Habouzit
<madcoder@debian.org>
Wed, 16 May 2007 16:34:27 +0000
(18:34 +0200)
committer
Pierre Habouzit
<madcoder@debian.org>
Wed, 16 May 2007 16:34:27 +0000
(18:34 +0200)
if (str*cmp(a, b)) is similar to if (a != b) ... doh
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
crypt.cpkg
patch
|
blob
|
history
diff --git
a/crypt.cpkg
b/crypt.cpkg
index
819adae
..
50f1eae
100644
(file)
--- a/
crypt.cpkg
+++ b/
crypt.cpkg
@@
-197,7
+197,7
@@
static void convert_to_7bit (BODY * a)
if (a->type == TYPEMULTIPART) {
a->encoding = ENC7BIT;
convert_to_7bit(a->parts);
- } else if (a->type == TYPEMESSAGE && tok
=
= MIME_DELIVERY_STATUS) {
+ } else if (a->type == TYPEMESSAGE && tok
!
= MIME_DELIVERY_STATUS) {
if (a->encoding != ENC7BIT)
mutt_message_to_7bit(a, NULL);
} else if (a->encoding == ENC8BIT) {