summaryrefslogtreecommitdiff
path: root/lib/util/parmlist.h
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-07-08 09:18:09 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-07-08 11:23:23 +0200
commitcf406f7e7d58b9c993ba1ddc6471fa85e445ba88 (patch)
tree6a2d2f66c8e98027d86b29ce2c0fe1bbd890f8c5 /lib/util/parmlist.h
parent2fcbfcd004685482c40de169bf904d7fa92ac165 (diff)
downloadsamba-cf406f7e7d58b9c993ba1ddc6471fa85e445ba88.tar.gz
samba-cf406f7e7d58b9c993ba1ddc6471fa85e445ba88.tar.bz2
samba-cf406f7e7d58b9c993ba1ddc6471fa85e445ba88.zip
s3-param use common struct parmlist_entry to hold parametric options
This will allow struct loadparm_service to be shared in future. Andrew Bartlett
Diffstat (limited to 'lib/util/parmlist.h')
-rw-r--r--lib/util/parmlist.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/util/parmlist.h b/lib/util/parmlist.h
index b320afee47..9bc4f36126 100644
--- a/lib/util/parmlist.h
+++ b/lib/util/parmlist.h
@@ -24,6 +24,7 @@ struct parmlist_entry {
struct parmlist_entry *prev, *next;
char *key;
char *value;
+ char **list; /* For the source3 parametric options, to save the parsed list */
int priority;
};