summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-11-16 16:47:15 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-11-21 15:19:01 +0100
commitdf7adbb2533e6b2753b87de2089f187f61be8c7a (patch)
treebfa422642908a4791c0b9af186f02e19928c51ea
parentdae32220fd2cd9b4f77ee7e48dbe0a4eb8205ef8 (diff)
downloadgnutls-df7adbb2533e6b2753b87de2089f187f61be8c7a.tar.gz
x509/output: improve log message on embedded null
-rw-r--r--lib/x509/output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/x509/output.c b/lib/x509/output.c
index 87ef1fbc61..36b1f36a00 100644
--- a/lib/x509/output.c
+++ b/lib/x509/output.c
@@ -58,7 +58,7 @@ unsigned i;
|| type == GNUTLS_SAN_RFC822NAME
|| type == GNUTLS_SAN_URI) && sname != NULL && strlen(sname) != name->size) {
adds(str,
- _("warning: generalName contains an embedded NUL, "
+ _("warning: SAN contains an embedded NUL, "
"replacing with '!'\n"));
while (strlen(sname) < name->size)
name->data[strlen(sname)] = '!';