diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2012-07-23 12:19:46 +0930 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-08-07 23:20:04 +1000 |
commit | 592e3f4b236b3b5c056faca6ca6f060560a3204d (patch) | |
tree | ac66d19f7388443c56be2d920982affa0f2a0a50 /script/mkparamdefs.pl | |
parent | 9b7b736e5b99c525d251942476ac94570aafb8e3 (diff) | |
download | samba-592e3f4b236b3b5c056faca6ca6f060560a3204d.tar.gz |
loadparm: Add ctx member to struct loadparm_global.
Rather than tallocing global parameters off NULL, keep it neat by having
a Global.ctx member.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'script/mkparamdefs.pl')
-rw-r--r-- | script/mkparamdefs.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/script/mkparamdefs.pl b/script/mkparamdefs.pl index b489cc9277a..6b59230b243 100644 --- a/script/mkparamdefs.pl +++ b/script/mkparamdefs.pl @@ -91,12 +91,14 @@ $file->("/* This file was automatically generated by mkparamdefs.pl. DO NOT EDIT $file->(" * This structure describes global (ie., server-wide) parameters.\n"); $file->(" */\n"); $file->("struct loadparm_global \n"); + $file->("{\n"); + $file->("\tTALLOC_CTX *ctx; /* Context for talloced members */\n"); } elsif ($generate_scope eq "LOCAL") { $file->(" * This structure describes a single service.\n"); $file->(" */\n"); $file->("struct loadparm_service \n"); + $file->("{\n"); } -$file->("{\n"); } sub print_footer($$$) |