diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2019-12-22 21:51:53 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2019-12-22 21:51:53 +0000 |
commit | 5031095fd4553935c70e1c24a9936dfc609cdc67 (patch) | |
tree | bab414da33bc4c43b5b9241f89ab2ef2afc1237f | |
parent | e66a8a1aef8466d61991342335eb0802988c3f7e (diff) |
Fix build with heimdal-gssapi. Bug 2501
-rw-r--r-- | src/src/auths/heimdal_gssapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/auths/heimdal_gssapi.c b/src/src/auths/heimdal_gssapi.c index 273d4f47b..3dfcb8c6a 100644 --- a/src/src/auths/heimdal_gssapi.c +++ b/src/src/auths/heimdal_gssapi.c @@ -415,7 +415,7 @@ while (step < 4) NULL, /* conf_state: no confidentiality applied */ &gbufdesc_out /* output buffer */ ); - if (GSS_ERROR(maj_stat) + if (GSS_ERROR(maj_stat)) { exim_gssapi_error_defer(NULL, maj_stat, min_stat, "gss_wrap(SASL state after auth)"); |