1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

param: rename szIdmapGID -> idmap_gid

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Michael Adam 2015-07-22 19:13:55 +02:00 committed by Jeremy Allison
parent 3566e7de93
commit 37234031c7
2 changed files with 3 additions and 3 deletions

View File

@ -249,7 +249,7 @@ enum case_handling {CASE_LOWER,CASE_UPPER};
struct parmlist_entry *param_opt; \ struct parmlist_entry *param_opt; \
char *realm_original; \ char *realm_original; \
char *idmap_uid; \ char *idmap_uid; \
char *szIdmapGID; \ char *idmap_gid; \
char *idmap_backend; char *idmap_backend;
const char* server_role_str(uint32_t role); const char* server_role_str(uint32_t role);

View File

@ -3607,7 +3607,7 @@ struct parm_struct parm_table[] = {
.label = "idmap gid", .label = "idmap gid",
.type = P_STRING, .type = P_STRING,
.p_class = P_GLOBAL, .p_class = P_GLOBAL,
.offset = GLOBAL_VAR(szIdmapGID), .offset = GLOBAL_VAR(idmap_gid),
.special = handle_idmap_gid, .special = handle_idmap_gid,
.enum_list = NULL, .enum_list = NULL,
.flags = FLAG_DEPRECATED, .flags = FLAG_DEPRECATED,
@ -3616,7 +3616,7 @@ struct parm_struct parm_table[] = {
.label = "winbind gid", .label = "winbind gid",
.type = P_STRING, .type = P_STRING,
.p_class = P_GLOBAL, .p_class = P_GLOBAL,
.offset = GLOBAL_VAR(szIdmapGID), .offset = GLOBAL_VAR(idmap_gid),
.special = handle_idmap_gid, .special = handle_idmap_gid,
.enum_list = NULL, .enum_list = NULL,
.flags = FLAG_SYNONYM, .flags = FLAG_SYNONYM,