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:
@ -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[] = {
|
||||
|
Reference in New Issue
Block a user