diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-06-29 13:18:57 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-06-29 15:44:08 +1000 |
commit | 7198d540e8abc31f831e9c13a031b905604176c6 (patch) | |
tree | 005d4c04d366901b76719e4f6144d1a522134d25 /source4/param/loadparm.h | |
parent | 21756b7c7d3048ce3396ab63aebc80babf4819e9 (diff) | |
download | samba-7198d540e8abc31f831e9c13a031b905604176c6.tar.gz samba-7198d540e8abc31f831e9c13a031b905604176c6.tar.bz2 samba-7198d540e8abc31f831e9c13a031b905604176c6.zip |
param: Merge struct parm_struct definitions
This will allow the parameter tables to be shared between source3 and
source4.
Andrew Bartlett
Diffstat (limited to 'source4/param/loadparm.h')
-rw-r--r-- | source4/param/loadparm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/param/loadparm.h b/source4/param/loadparm.h index 7a76321b06..4fc28e7f05 100644 --- a/source4/param/loadparm.h +++ b/source4/param/loadparm.h @@ -48,7 +48,8 @@ struct parm_struct { parm_type type; parm_class pclass; int offset; - bool (*special)(struct loadparm_context *, const char *, char **); + bool (*special)(struct loadparm_context *lpcfg_ctx, + int snum, const char *, char **); const struct enum_list *enum_list; union { int bvalue; |