1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

script/mks3param_ctx_table.pl: fix tabs/whitespaces in generated output.

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Günther Deschner <gd@samba.org>

Autobuild-User(master): Günther Deschner <gd@samba.org>
Autobuild-Date(master): Fri Oct 18 16:20:01 CEST 2013 on sn-devel-104
This commit is contained in:
Stefan Metzmacher 2013-10-17 09:28:57 +02:00 committed by Günther Deschner
parent 045f5c2f89
commit 36f4f72060

View File

@ -64,7 +64,7 @@ sub print_header($)
{
my ($file) = @_;
$file->("/* This file was automatically generated by mks3param_ctx.pl. DO NOT EDIT */\n\n");
$file->("static const struct loadparm_s3_helpers s3_fns = \n");
$file->("static const struct loadparm_s3_helpers s3_fns =\n");
$file->("{\n");
$file->("\t.get_parametric = lp_parm_const_string_service,\n");
$file->("\t.get_parm_struct = lp_get_parameter,\n");
@ -95,7 +95,7 @@ sub handle_loadparm($$)
my $type = $2;
my $name = $3;
$file->(".$name = lp_$name,\n");
$file->("\t.$name = lp_$name,\n");
}
}