diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-10-17 09:28:57 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2013-10-18 16:20:01 +0200 |
commit | 36f4f72060b44e0b2d4563a24f9e811a8fe87eef (patch) | |
tree | ac13ba4e8934dc56731d2a2bbc763840d255f16a /script | |
parent | 045f5c2f891f8e7765c39756ca379cb9c5e7aa15 (diff) | |
download | samba-36f4f72060b44e0b2d4563a24f9e811a8fe87eef.tar.gz samba-36f4f72060b44e0b2d4563a24f9e811a8fe87eef.tar.bz2 samba-36f4f72060b44e0b2d4563a24f9e811a8fe87eef.zip |
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
Diffstat (limited to 'script')
-rw-r--r-- | script/mks3param_ctx_table.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/mks3param_ctx_table.pl b/script/mks3param_ctx_table.pl index cfd6e029da..22efc88ca6 100644 --- a/script/mks3param_ctx_table.pl +++ b/script/mks3param_ctx_table.pl @@ -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"); } } |