commit | a78b218042054f7e42c16114862176fb443336fa | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu Mar 19 17:16:11 2015 +0000 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu Mar 19 17:16:11 2015 +0000 |
tree | 8644c841470630ee358b37069689fb875b59be99 | |
parent | 6e0643762d119ac8dd3f9b84c25222a057a9da4a [diff] [blame] |
Fix contness of debug_print_buf()
diff --git a/library/debug.c b/library/debug.c index bb497b8..ade98d4 100644 --- a/library/debug.c +++ b/library/debug.c
@@ -120,7 +120,7 @@ void debug_print_buf( const ssl_context *ssl, int level, const char *file, int line, const char *text, - unsigned char *buf, size_t len ) + const unsigned char *buf, size_t len ) { char str[512]; char txt[17];