ERR_put_error.pod: fix the name of function ERR_add_error_vdata()

Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1956)
This commit is contained in:
Beat Bolli 2017-01-20 00:43:48 +01:00 committed by Matt Caswell
parent 7a67a3ba04
commit 61ced34f8d

View file

@ -2,7 +2,7 @@
=head1 NAME =head1 NAME
ERR_put_error, ERR_add_error_data - record an error ERR_put_error, ERR_add_error_data, ERR_add_error_vdata - record an error
=head1 SYNOPSIS =head1 SYNOPSIS
@ -12,7 +12,7 @@ ERR_put_error, ERR_add_error_data - record an error
int line); int line);
void ERR_add_error_data(int num, ...); void ERR_add_error_data(int num, ...);
void ERR_add_error_data(int num, va_list arg); void ERR_add_error_vdata(int num, va_list arg);
=head1 DESCRIPTION =head1 DESCRIPTION