summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorGarming Sam <garming@catalyst.net.nz>2014-02-24 12:31:43 +1300
committerJeremy Allison <jra@samba.org>2014-05-07 19:49:16 +0200
commitad09b3e608f498b4f7a05fa3fce0648c99a533ea (patch)
tree6c0246af1e2e0d4c059fb1b774eee1504ecdac74 /python
parentdb19d744799d44ced56d33553194b603691f6822 (diff)
downloadsamba-ad09b3e608f498b4f7a05fa3fce0648c99a533ea.tar.gz
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>
Diffstat (limited to 'python')
-rw-r--r--python/samba/tests/docs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/samba/tests/docs.py b/python/samba/tests/docs.py
index 31c66a61a7d..b11e4f19722 100644
--- a/python/samba/tests/docs.py
+++ b/python/samba/tests/docs.py
@@ -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():