summaryrefslogtreecommitdiff
path: root/docs-xml/scripts
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-09-04 09:09:38 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-09-04 09:31:49 +1000
commitf9e8f08197651f053bf6a23584bf04814440fec0 (patch)
treede937734502d162b5af8ebf21ba53b685746cda2 /docs-xml/scripts
parent28499b04769ee0d310e48576b868e11c0d2b1422 (diff)
downloadsamba-f9e8f08197651f053bf6a23584bf04814440fec0.tar.gz
samba-f9e8f08197651f053bf6a23584bf04814440fec0.tar.bz2
samba-f9e8f08197651f053bf6a23584bf04814440fec0.zip
docs: Fix undocumented target to find smb.conf directives in the right place
The manpages target needs to be reworked to know about waf. Andrew Bartlett
Diffstat (limited to 'docs-xml/scripts')
-rwxr-xr-xdocs-xml/scripts/find_missing_doc.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs-xml/scripts/find_missing_doc.pl b/docs-xml/scripts/find_missing_doc.pl
index 3d0c345a5d..6ce547be3e 100755
--- a/docs-xml/scripts/find_missing_doc.pl
+++ b/docs-xml/scripts/find_missing_doc.pl
@@ -29,7 +29,7 @@ chdir($curdir);
# Reading entries from source code
-open(SOURCE,"$topdir/param/loadparm.c") or die("Can't open $topdir/param/loadparm.c: $!");
+open(SOURCE,"$topdir/lib/param/param_table.c") or die("Can't open $topdir/lib/param/param_table.c: $!");
while ($ln = <SOURCE>) {
last if $ln =~ m/^static\ struct\ parm_struct\ parm_table.*/;