From 840cdfa2fabbb48d2f18dc3cea65ff8123bf6ca9 Mon Sep 17 00:00:00 2001 From: Brad Hards Date: Tue, 24 Nov 2009 13:43:59 +1100 Subject: s4:param remove reference to private header from source4/param/param.h source4/param/param.h has a param.h is a public header (and parmlist isn't, even if the relative path could work), so I suggest making it a forward declaration in the header, and including parmlist.h in the implementation. (commit message included from e-mail by Andrew Bartlett) Signed-off-by: Andrew Bartlett --- source4/param/param.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/param/param.h') diff --git a/source4/param/param.h b/source4/param/param.h index 3ce5e93acf..52224252a0 100644 --- a/source4/param/param.h +++ b/source4/param/param.h @@ -20,7 +20,7 @@ #ifndef _PARAM_H /* _PARAM_H */ #define _PARAM_H -#include "../lib/util/parmlist.h" +struct parmlist_entry; struct param_context { struct param_section *sections; -- cgit