From 03ab3429090a9fccc8778d949cd9d92042575558 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 6 Jan 2006 02:13:01 +0000 Subject: r12729: Implement the --section-name option, for dumping only one section. Andrew Bartlett (This used to be commit 3c49dd9219b12f5ed229ba108a02b85a18146df8) --- source4/param/loadparm.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'source4/param/loadparm.h') diff --git a/source4/param/loadparm.h b/source4/param/loadparm.h index 16444c84a2..1bb0ed6618 100644 --- a/source4/param/loadparm.h +++ b/source4/param/loadparm.h @@ -68,6 +68,18 @@ struct parm_struct { #define FLAG_DEVELOPER 0x0040 /* Parameters that the wizard will operate on */ #define FLAG_DEPRECATED 0x1000 /* options that should no longer be used */ #define FLAG_HIDE 0x2000 /* options that should be hidden in SWAT */ -#define FLAG_DOS_STRING 0x4000 /* convert from UNIX to DOS codepage when reading this string. */ +#define FLAG_DEFAULT 0x4000 /* this option was a default */ #define FLAG_CMDLINE 0x8000 /* this option was set from the command line */ +#ifndef GLOBAL_NAME +#define GLOBAL_NAME "global" +#endif + +#ifndef PRINTERS_NAME +#define PRINTERS_NAME "printers" +#endif + +#ifndef HOMES_NAME +#define HOMES_NAME "homes" +#endif + -- cgit