]> granicus.if.org Git - neomutt/commit
Fix error message when opening a mailbox with no read permission. (closes #3934)
authorRoger Cornelius <rac@tenzing.org>
Wed, 26 Apr 2017 22:40:34 +0000 (15:40 -0700)
committerRoger Cornelius <rac@tenzing.org>
Wed, 26 Apr 2017 22:40:34 +0000 (15:40 -0700)
commita1fe3723eaa87612c7576a8e99ac04ecff2282d3
tree0c08ebe3f2450af7b6f46cdc82b65cee2d0afc3a
parent1518776e55f3e13888aead8a6fd6f7f368949860
Fix error message when opening a mailbox with no read permission. (closes #3934)

ctx->mx_ops ends up being NULL for both the case that ctx->magic is 0
and -1.  This meant the mutt_perror() error message was never being
printed, because the check for ctx->mx_ops == NULL was taking place
first.

Move the "ctx->magic == -1" check first, so mutt will print out an
appropriate perror message in that case.
mx.c