Remove useless code
[openssl.git] / crypto / bio / b_dump.c
index 622a261d52b7e6602749c0b0e8f3ee66bfc3b2a9..55792b9e3001dbb40a70e2947c60490fba7a2e46 100644 (file)
@@ -61,7 +61,7 @@
  */
 
 #include <stdio.h>
-#include "cryptlib.h"
+#include "internal/cryptlib.h"
 #include "bio_lcl.h"
 
 #define TRUNCATE
@@ -104,7 +104,6 @@ int BIO_dump_indent_cb(int (*cb) (const void *data, size_t len, void *u),
     if ((rows * dump_width) < len)
         rows++;
     for (i = 0; i < rows; i++) {
-        buf[0] = '\0';          /* start with empty string */
         BUF_strlcpy(buf, str, sizeof buf);
         BIO_snprintf(tmp, sizeof tmp, "%04x - ", i * dump_width);
         BUF_strlcat(buf, tmp, sizeof buf);