Append additional string data to the most recent error, from a va_list.
Declared in <openssl/err.h>
void
ERR_add_error_vdata(
int num,
va_list args);
Like ERR_add_error_data() but takes a va_list; total extra data per error is capped at 4096 characters.
| Name | Description |
|---|---|
| num | Number of char * arguments in args to concatenate. |
| args | va_list of num C strings associated with the last error code. |