diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:03:21 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:43 -0800 |
commit | de83893e1ddd280c25142d7afb8d17a18625e7b5 (patch) | |
tree | 63051e1b967bafb219f05807bf12489e666a887c /lib/param/param_table.c | |
parent | 461461f12b4ac43d0053e981b6fb41e0247103bf (diff) | |
download | samba-de83893e1ddd280c25142d7afb8d17a18625e7b5.tar.gz samba-de83893e1ddd280c25142d7afb8d17a18625e7b5.tar.xz samba-de83893e1ddd280c25142d7afb8d17a18625e7b5.zip |
param: Rename variable used for lp_username szUsername
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/param/param_table.c')
-rw-r--r-- | lib/param/param_table.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 8d1c0ea27d..09a32e0fd9 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -746,7 +746,7 @@ static struct parm_struct parm_table[] = { .label = "username", .type = P_STRING, .p_class = P_LOCAL, - .offset = LOCAL_VAR(szUsername), + .offset = LOCAL_VAR(username), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE | FLAG_DEPRECATED, @@ -755,7 +755,7 @@ static struct parm_struct parm_table[] = { .label = "user", .type = P_STRING, .p_class = P_LOCAL, - .offset = LOCAL_VAR(szUsername), + .offset = LOCAL_VAR(username), .special = NULL, .enum_list = NULL, .flags = FLAG_HIDE, @@ -764,7 +764,7 @@ static struct parm_struct parm_table[] = { .label = "users", .type = P_STRING, .p_class = P_LOCAL, - .offset = LOCAL_VAR(szUsername), + .offset = LOCAL_VAR(username), .special = NULL, .enum_list = NULL, .flags = FLAG_HIDE, |