Blame SOURCES/Fix-integer-sizes-used-with-ap_set_flag_slot.patch

e540be
From d681fe586a4f4258c5d61237511dd19c1fa84904 Mon Sep 17 00:00:00 2001
e540be
From: Robbie Harwood <rharwood@redhat.com>
e540be
Date: Tue, 19 Feb 2019 13:55:12 -0500
e540be
Subject: [PATCH] Fix integer sizes used with ap_set_flag_slot()
e540be
e540be
ap_set_flag_slot() requires a field of type `int`.  Previously we
e540be
passed type `bool` in two places, causing test failures on s390x
e540be
because logging was not correctly configured.
e540be
e540be
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
e540be
(cherry picked from commit f89b876be5619d750e6ab4ea6e730a9a26b1cac4)
e540be
(cherry picked from commit 73c690ca9bd1d470c603f5e1ee48d2384941ae55)
e540be
---
e540be
 src/mod_auth_gssapi.h | 4 ++--
e540be
 1 file changed, 2 insertions(+), 2 deletions(-)
e540be
e540be
diff --git a/src/mod_auth_gssapi.h b/src/mod_auth_gssapi.h
e540be
index 71404ff..8c0b972 100644
e540be
--- a/src/mod_auth_gssapi.h
e540be
+++ b/src/mod_auth_gssapi.h
e540be
@@ -79,7 +79,7 @@ struct mag_config {
e540be
     gid_t deleg_ccache_gid;
e540be
     gss_key_value_set_desc *cred_store;
e540be
     bool deleg_ccache_unique;
e540be
-    bool s4u2self;
e540be
+    int s4u2self;
e540be
     char *ccname_envvar;
e540be
 #endif
e540be
     struct seal_key *mag_skey;
e540be
@@ -90,7 +90,7 @@ struct mag_config {
e540be
     bool negotiate_once;
e540be
     struct mag_name_attributes *name_attributes;
e540be
     const char *required_na_expr;
e540be
-    bool enverrs;
e540be
+    int enverrs;
e540be
     gss_name_t acceptor_name;
e540be
     bool acceptor_name_from_req;
e540be
 };