test/p_test.c: silence -Wstringop-overflow
[openssl.git] / test / p_test.c
index 925e3b8948d92d526c00d1df7167a17eb04ca767..904b75b2de45680e867928b6f205e04bbf5d7fd7 100644 (file)
@@ -92,7 +92,7 @@ static int p_get_params(void *vprov, OSSL_PARAM params[])
 
             p->return_size = buf_l = strlen(buf) + 1;
             if (p->data_size >= buf_l)
-                strncpy(p->data, buf, buf_l);
+                strcpy(p->data, buf);
             else
                 ok = 0;
         }