summaryrefslogtreecommitdiff
path: root/source3/lib/pam_errors.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/pam_errors.c')
-rw-r--r--source3/lib/pam_errors.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/pam_errors.c b/source3/lib/pam_errors.c
index f0f47333cb..1971e3b763 100644
--- a/source3/lib/pam_errors.c
+++ b/source3/lib/pam_errors.c
@@ -24,7 +24,7 @@
#include <security/pam_appl.h>
/* PAM -> NT_STATUS map */
-static struct {
+const static struct {
int pam_code;
NTSTATUS ntstatus;
} pam_to_nt_status_map[] = {
@@ -55,7 +55,7 @@ static struct {
};
/* NT_STATUS -> PAM map */
-static struct {
+const static struct {
NTSTATUS ntstatus;
int pam_code;
} nt_status_to_pam_map[] = {