From ee1fe382d662998370e66d08bcebbc153fca7b5a Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 11 Sep 2009 14:54:02 +0200 Subject: talloc:mksyms: allow double pointer return value of functions. Michael --- source3/script/mksyms.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit