1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

Merge from HEAD - make Samba compile with -Wwrite-strings without additional

warnings.  (Adds a lot of const).

Andrew Bartlett
This commit is contained in:
Andrew Bartlett
-
parent 96e9fa5f22
commit 3a7458f947
131 changed files with 1197 additions and 1188 deletions

View File

@ -28,7 +28,7 @@
#endif
/* PAM -> NT_STATUS map */
const static struct {
static const struct {
int pam_code;
NTSTATUS ntstatus;
} pam_to_nt_status_map[] = {
@ -58,7 +58,7 @@ const static struct {
};
/* NT_STATUS -> PAM map */
const static struct {
static const struct {
NTSTATUS ntstatus;
int pam_code;
} nt_status_to_pam_map[] = {