summaryrefslogtreecommitdiff
path: root/doc/scripts
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2012-10-06 04:26:05 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2012-10-06 14:57:19 +0200
commit3b58c338b2af492c2fc986458c837ebaf73007b5 (patch)
tree8f47fb6929ec86aff14655d871976a276cffbe10 /doc/scripts
parentb2e95a9acc2045d283857f4727d78cced11eadac (diff)
downloadgnutls-3b58c338b2af492c2fc986458c837ebaf73007b5.tar.gz
Added a DANE library.
Diffstat (limited to 'doc/scripts')
-rwxr-xr-xdoc/scripts/getfuncs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/scripts/getfuncs.pl b/doc/scripts/getfuncs.pl
index 383924045f..9e7680558a 100755
--- a/doc/scripts/getfuncs.pl
+++ b/doc/scripts/getfuncs.pl
@@ -42,7 +42,7 @@ while ($line=<STDIN>) {
$func = $1;
}
- if ($func ne '' && $func =~ m/gnutls_.*/) {
+ if ($func ne '' && ($func =~ m/gnutls_.*/ || $func =~ m/dane_.*/)) {
print $func . "\n";
}
}