forked from wolfSSL/wolfssl
wolfssl/test.h: add unsigned attribute to type of buffer passed to wolfsentry_config_json_feed() (sync with wolfsentry e22878b666).
This commit is contained in:
@ -1585,7 +1585,8 @@ static int wolfsentry_setup(
|
|||||||
|
|
||||||
#if !defined(NO_FILESYSTEM) && !defined(WOLFSENTRY_NO_JSON)
|
#if !defined(NO_FILESYSTEM) && !defined(WOLFSENTRY_NO_JSON)
|
||||||
if (_wolfsentry_config_path != NULL) {
|
if (_wolfsentry_config_path != NULL) {
|
||||||
char buf[512], err_buf[512];
|
unsigned char buf[512];
|
||||||
|
char err_buf[512];
|
||||||
struct wolfsentry_json_process_state *jps;
|
struct wolfsentry_json_process_state *jps;
|
||||||
|
|
||||||
FILE *f = fopen(_wolfsentry_config_path, "r");
|
FILE *f = fopen(_wolfsentry_config_path, "r");
|
||||||
|
Reference in New Issue
Block a user