summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am11
-rw-r--r--lib/x509/x509.c3
2 files changed, 2 insertions, 12 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 6eb175bf6f..f213be19a9 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -196,17 +196,6 @@ all-local: $(hmac_files)
$(AM_V_GEN) $(builddir)/fipshmac .libs/$(gnutls_so) > $@-t && mv $@-t $@
CLEANFILES = $(hmac_files)
-
-install-exec-hook: $(hmac_files)
- for file in $(hmac_files); do \
- $(INSTALL_DATA) $$file $(DESTDIR)$(libdir); \
- done
-
-uninstall-hook:
- for file in $(hmac_files); do \
- basename=$$(expr $$file : '.*/\(.*\)'); \
- $(DESTDIR)$(libdir)/$$basename; \
- done
endif
if ENABLE_TROUSERS
diff --git a/lib/x509/x509.c b/lib/x509/x509.c
index 4e494d10e0..b56f6195b2 100644
--- a/lib/x509/x509.c
+++ b/lib/x509/x509.c
@@ -861,7 +861,8 @@ gnutls_x509_crt_get_issuer_dn_oid(gnutls_x509_crt_t cert,
* described in RFC4514. The output string will be ASCII or UTF-8
* encoded, depending on the certificate data.
*
- * If @buf is null then only the size will be filled.
+ * The @buf returned will be null terminated and the @buf_size will account
+ * for the trailing null. If @buf is null then only the size will be filled.
*
* This function does not output a fully RFC4514 compliant string, if
* that is required see gnutls_x509_crt_get_dn3().