diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:03:16 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:42 -0800 |
commit | 1abe45faac1454662ad0272f5511cf6cc93eecb0 (patch) | |
tree | b672b0cd54ff1ace293c0124742a9f60e656c884 /lib/param/param_table.c | |
parent | 50cc510584f0a97175c563a96bd641ead874dc93 (diff) | |
download | samba-1abe45faac1454662ad0272f5511cf6cc93eecb0.tar.gz samba-1abe45faac1454662ad0272f5511cf6cc93eecb0.tar.xz samba-1abe45faac1454662ad0272f5511cf6cc93eecb0.zip |
param: Rename variable used for lp_pathname szPath
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 3b1555d936..dcd8f3efd2 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -310,7 +310,7 @@ static struct parm_struct parm_table[] = { .label = "path", .type = P_STRING, .p_class = P_LOCAL, - .offset = LOCAL_VAR(szPath), + .offset = LOCAL_VAR(pathname), .special = NULL, .enum_list = NULL, .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT, @@ -319,7 +319,7 @@ static struct parm_struct parm_table[] = { .label = "directory", .type = P_STRING, .p_class = P_LOCAL, - .offset = LOCAL_VAR(szPath), + .offset = LOCAL_VAR(pathname), .special = NULL, .enum_list = NULL, .flags = FLAG_HIDE, |