Skip to content

Commit

Permalink
lib-mail: Fixed to 91fdb25
Browse files Browse the repository at this point in the history
Caused by my manual edits to avoid the -Wstrict-bool warnings.
  • Loading branch information
sirainen committed Jun 6, 2016
1 parent 0679f8a commit 64a07a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib-mail/message-address.c
Expand Up @@ -250,7 +250,7 @@ static int parse_mailbox(struct message_address_parser_context *ctx)
ctx->parser.data = start;
ret = parse_addr_spec(ctx);
if (ctx->addr.invalid_syntax && ctx->addr.name == NULL &&
ctx->addr.mailbox == NULL && ctx->addr.domain == NULL) {
ctx->addr.mailbox != NULL && ctx->addr.domain == NULL) {
ctx->addr.name = ctx->addr.mailbox;
ctx->addr.mailbox = NULL;
}
Expand Down

0 comments on commit 64a07a7

Please sign in to comment.