1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-27 23:21:58 +03:00

Enable Win32 to compile libpq again, and enable SSL compiles on that

platform.

Andreas Pflug
This commit is contained in:
Bruce Momjian
2003-09-05 02:08:36 +00:00
parent 1709fde56a
commit 2dc9437160
6 changed files with 60 additions and 28 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.146 2003/08/27 00:33:34 petere Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.147 2003/09/05 02:08:36 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -2304,7 +2304,7 @@ PQunescapeBytea(const unsigned char *strtext, size_t *retbuflen)
if (buffer == NULL)
return NULL;
for (i = j = buflen = 0; i < strtextlen;)
for (i = j = buflen = 0; i < (int)strtextlen;)
{
switch (strtext[i])
{