summaryrefslogtreecommitdiff
path: root/source3/lib/pam_errors.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-03-23 08:45:03 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-03-23 08:45:03 +0000
commit33dd5128961f2a39cd70c7b6766a524aba2443d7 (patch)
tree2166e489fe22d0436b364020e965d7e8661c8e63 /source3/lib/pam_errors.c
parentd6d9d6debdbf9bfa3fba287e0a1799e764c6b0d5 (diff)
downloadsamba-33dd5128961f2a39cd70c7b6766a524aba2443d7.tar.gz
samba-33dd5128961f2a39cd70c7b6766a524aba2443d7.tar.bz2
samba-33dd5128961f2a39cd70c7b6766a524aba2443d7.zip
Make a number of the lookup tables 'const'. I'm told this assists in sharing
memory between users of shared libs. Andrew Bartlett (This used to be commit 41dd5a4d292bb08fa313f6220014cd9b4490237b)
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[] = {