1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-27 07:42:04 +03:00

param: correctly use param_table.c as a regular C file

Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Garming Sam
2014-02-24 12:31:43 +13:00
committed by Jeremy Allison
parent db19d74479
commit ad09b3e608
6 changed files with 23 additions and 13 deletions

View File

@ -66,7 +66,7 @@ def get_implementation_parameters(sourcedir):
# burn through the preceding lines
while True:
l = f.readline()
if l.startswith("static struct parm_struct parm_table"):
if l.startswith("struct parm_struct parm_table"):
break
for l in f.readlines():