summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2015-07-23 18:37:00 +0200
committerJeremy Allison <jra@samba.org>2015-07-31 01:55:32 +0200
commitbbd55f69a0eb28260a6b6340926e596cb67b9956 (patch)
tree59e29c66d6c4aaee1d22f085fa2794d4b6d19f68 /python
parent0dfa9e29963805fe02e945268c9ce4ff040e076d (diff)
downloadsamba-bbd55f69a0eb28260a6b6340926e596cb67b9956.tar.gz
samba-bbd55f69a0eb28260a6b6340926e596cb67b9956.tar.bz2
samba-bbd55f69a0eb28260a6b6340926e596cb67b9956.zip
param: move the actual table out into param_table_static.c
Signed-off-by: Michael Adam <obnox@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 112f89ae80f..ded0c20cba5 100644
--- a/python/samba/tests/docs.py
+++ b/python/samba/tests/docs.py
@@ -60,7 +60,7 @@ def get_documented_parameters(sourcedir):
def get_implementation_parameters(sourcedir):
# Reading entries from source code
- f = open(os.path.join(sourcedir, "lib/param/param_table.c"), "r")
+ f = open(os.path.join(sourcedir, "lib/param/param_table_static.c"), "r")
try:
# burn through the preceding lines
while True: