Fix documentation comment for pg_md5_hash

Commit b69aba7457 added the errstr parameter to pg_md5_hash but
missed updating the synopsis in the documentation comment.  The
follow-up commit 587de223f0 added the parameter to the list of
outputs.  The returnvalue had been changed from integer to bool
before that but remained in the synopsis.  This fixes both.

Author: Tatsuro Yamada <tatsuro.yamada@ntt.com>
Discussion: https://postgr.es/m/TYYPR01MB82313576150CC86084A122CD9E292@TYYPR01MB8231.jpnprd01.prod.outlook.com
This commit is contained in:
Daniel Gustafsson 2024-03-14 09:23:37 +01:00
parent 9c40db3b02
commit 6b41ef0330
1 changed files with 2 additions and 1 deletions

View File

@ -45,7 +45,8 @@ bytesToHex(uint8 b[16], char *s)
* Calculates the MD5 sum of the bytes in a buffer.
*
* SYNOPSIS #include "md5.h"
* int pg_md5_hash(const void *buff, size_t len, char *hexsum)
* bool pg_md5_hash(const void *buff, size_t len, char *hexsum,
* const char **errstr)
*
* INPUT buff the buffer containing the bytes that you want
* the MD5 sum of.