Fix the synopsis of pg_md5_hash
Tatsuro Yamada <tatsuro.yamada@ntt.com>
From: Tatsuro Yamada <tatsuro.yamada@ntt.com>
To: "pgsql-hackers@postgresql.org" <pgsql-hackers@postgresql.org>
Date: 2024-03-14T06:02:04Z
Lists: pgsql-hackers
Attachments
- fix_synopsis_of_pg_md5_hash.patch (application/octet-stream) patch
Hi,
The synopsis of pg_md5_hash() seems wrong such as:
- s/int/bool/
- "errstr" is missing
So, I created a patch to fix them.
src/common/md5_common.c
==================================================
* 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)
==================================================
Please find attached file.
Regards,
Tatsuro Yamada
NTT Open Source Software Center
Commits
-
Fix documentation comment for pg_md5_hash
- 6b41ef03306f 17.0 landed