forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit8fab4b3
committed
Include <limits.h> in fe-auth.c, to get CHAR_BIT reliably.
fe-auth.c references CHAR_BIT since commit3a465cc, but itdid not #include <limits.h>, which per POSIX is where thatsymbol is defined. This escaped notice so far because(a) on most platforms, <sys/param.h> pulls in <limits.h>,(b) even if yours doesn't, OpenSSL pulls it in, so compilingwith --with-openssl masks the omission.Per bug #18026 from Marcel Hofstetter. Back-patch to v16.Discussion:https://postgr.es/m/18026-d5bb69f79cd16203@postgresql.org1 parent884eee5 commit8fab4b3
1 file changed
+1
-0
lines changedLines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
| 30 | + | |
30 | 31 |
| |
31 | 32 |
| |
32 | 33 |
| |
|
0 commit comments
Comments
(0)