From 128026c9a2de83a8ac6214e733fa871440c6b77f Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 16 May 2000 12:43:53 +0000 Subject: added the ".trailer" type, to mark where a packet turns into a trailer this now gives us enough to parse complete function calls, including the return values (This used to be commit ca8f1e92adf3603ad15f73277576cc9178bb4d74) --- source3/aparser/header.awk | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/aparser/header.awk') diff --git a/source3/aparser/header.awk b/source3/aparser/header.awk index 406335c930..24232bacf0 100644 --- a/source3/aparser/header.awk +++ b/source3/aparser/header.awk @@ -13,6 +13,7 @@ function header_element(f, elnum, LOCAL, type) { type=elements[elnum, "type"]; + if (substr(type,1,1) == ".") return; xprintf(f,"\t%s %s;\n", type, header_elstring(elnum)); } -- cgit