summaryrefslogtreecommitdiff
path: root/lib/x509_b64.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2013-11-22 14:35:32 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2013-11-27 11:41:44 +0100
commitc32120176b47c4bf4d9b0d0f1c691adafcef89da (patch)
tree5017942f1221529daf57581bbe42202de0f950f2 /lib/x509_b64.c
parent7c0c27c0ea7cc14516b4060c31c4519376d88c69 (diff)
downloadgnutls-c32120176b47c4bf4d9b0d0f1c691adafcef89da.tar.gz
silence some errors
Diffstat (limited to 'lib/x509_b64.c')
-rw-r--r--lib/x509_b64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/x509_b64.c b/lib/x509_b64.c
index 7702916ca6..715dd36f40 100644
--- a/lib/x509_b64.c
+++ b/lib/x509_b64.c
@@ -297,7 +297,7 @@ _gnutls_fbase64_decode(const char *header, const uint8_t * data,
if (rdata == NULL) {
gnutls_assert();
- _gnutls_debug_log("Could not find '%s'\n", pem_header);
+ _gnutls_hard_log("Could not find '%s'\n", pem_header);
return GNUTLS_E_BASE64_UNEXPECTED_HEADER_ERROR;
}
@@ -314,7 +314,7 @@ _gnutls_fbase64_decode(const char *header, const uint8_t * data,
*/
if (kdata == NULL) {
gnutls_assert();
- _gnutls_debug_log("Could not find '%s'\n", ENDSTR);
+ _gnutls_hard_log("Could not find '%s'\n", ENDSTR);
return GNUTLS_E_BASE64_DECODING_ERROR;
}
data_size -= strlen(ENDSTR);