diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/param/loadparm.h | 3 | ||||
-rw-r--r-- | lib/util/parmlist.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lib/param/loadparm.h b/lib/param/loadparm.h index 2627727f3a..d36f5a0f6e 100644 --- a/lib/param/loadparm.h +++ b/lib/param/loadparm.h @@ -27,7 +27,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -/* the following are used by loadparm for option lists */ +#include "../lib/util/parmlist.h" + /* the following are used by loadparm for option lists */ typedef enum { P_BOOL,P_BOOLREV,P_CHAR,P_INTEGER,P_OCTAL,P_LIST, 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; }; |