From cf406f7e7d58b9c993ba1ddc6471fa85e445ba88 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 8 Jul 2011 09:18:09 +1000 Subject: s3-param use common struct parmlist_entry to hold parametric options This will allow struct loadparm_service to be shared in future. Andrew Bartlett --- lib/util/parmlist.h | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/util/parmlist.h') 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; }; -- cgit