summaryrefslogtreecommitdiff
path: root/lib/debug.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-01-23 20:28:24 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-01-23 20:28:24 +0000
commitb991e8888c4fd21d0191cc3d83e722ce3747170c (patch)
tree5ee9389696a4bafc86ac5d666e7403e249fb5f68 /lib/debug.c
parent56486ee9a2dda50cb19d11b5bd9dbd8a7ec3a8be (diff)
downloadgnutls-b991e8888c4fd21d0191cc3d83e722ce3747170c.tar.gz
Some corrections done ( found by using flawfinder).
Added several tags for flawfinder to ignore.
Diffstat (limited to 'lib/debug.c')
-rw-r--r--lib/debug.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/debug.c b/lib/debug.c
index 40f7dbb4cc..b203234a76 100644
--- a/lib/debug.c
+++ b/lib/debug.c
@@ -31,7 +31,7 @@ void _gnutls_dump_mpi(char* prefix, MPI a)
size_t n = sizeof buf;
if (gcry_mpi_print(GCRYMPI_FMT_HEX, buf, &n, a))
- strcpy(buf, "[can't print value]");
+ strcpy(buf, "[can't print value]"); /* Flawfinder: ignore */
_gnutls_log( "MPI: length: %d\n\t%s%s\n", (n-1)/2, prefix, buf);
}
@@ -46,7 +46,7 @@ char *_gnutls_bin2hex(const unsigned char *old, const size_t oldlen)
return (new);
for (i = j = 0; i < oldlen; j+=2) {
- sprintf(&new[j], "%.2x", old[i]);
+ sprintf(&new[j], "%.2x", old[i]); /* Flawfinder: ignore */
i++;
}
new[j] = '\0';
@@ -70,7 +70,7 @@ void _gnutls_print_state(GNUTLS_STATE state)
}
-char* _gnutls_alert2str( int alert) {
+const char* _gnutls_alert2str( int alert) {
static char str[512];
switch(alert) {
@@ -88,7 +88,7 @@ static char str[512];
strcpy(str, "Decryption Failed");
break;
case GNUTLS_A_RECORD_OVERFLOW:
- strcpy(str, "Record Overflow");
+ strcpy(str, "Record Overflow");
break;
case GNUTLS_A_DECOMPRESSION_FAILURE: