diff options
Diffstat (limited to 'source3/script/mksyms.awk')
-rw-r--r-- | source3/script/mksyms.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/mksyms.awk b/source3/script/mksyms.awk index 846a283fe1..ab28d5a51c 100644 --- a/source3/script/mksyms.awk +++ b/source3/script/mksyms.awk @@ -60,7 +60,7 @@ END { /[_A-Za-z0-9]+[ \t]*[(].*[)][ \t]*;[ \t]*$/ { sub(/[(].*$/, ""); gsub(/[^ \t]+[ \t]+/, ""); - gsub(/^[*]/, ""); + gsub(/^[*]+/, ""); printf "\t\t%s;\n",$0; next; } |