mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 12:36:09 -07:00
big int to stdint switch
This commit is contained in:
parent
74931e3b58
commit
f124c26fc6
73 changed files with 1364 additions and 1235 deletions
|
@ -27,7 +27,7 @@
|
|||
/*
|
||||
* Object ID is a fundamental type in Postgres.
|
||||
*/
|
||||
typedef unsigned int Oid;
|
||||
typedef uint32_t Oid;
|
||||
|
||||
#ifdef __cplusplus
|
||||
#define InvalidOid (Oid(0))
|
||||
|
@ -43,7 +43,7 @@ typedef unsigned int Oid;
|
|||
/*
|
||||
* NAMEDATALEN is the max length for system identifiers (e.g. table names,
|
||||
* attribute names, function names, etc). It must be a multiple of
|
||||
* sizeof(int) (typically 4).
|
||||
* sizeof(int32_t) (typically 4).
|
||||
*
|
||||
* NOTE that databases with different NAMEDATALEN's cannot interoperate!
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue