~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty-security

« back to all changes in this revision

Viewing changes to src/backend/libpq/pqformat.c

Tags: upstream-8.4.0
ImportĀ upstreamĀ versionĀ 8.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
25
25
 * Portions Copyright (c) 1994, Regents of the University of California
26
26
 *
27
 
 *      $PostgreSQL: pgsql/src/backend/libpq/pqformat.c,v 1.49 2009/03/02 21:18:43 tgl Exp $
 
27
 *      $PostgreSQL: pgsql/src/backend/libpq/pqformat.c,v 1.50 2009/06/11 14:48:58 momjian Exp $
28
28
 *
29
29
 *-------------------------------------------------------------------------
30
30
 */
218
218
{
219
219
        while (*str)
220
220
        {
221
 
                char    ch = *str++;
 
221
                char            ch = *str++;
222
222
 
223
223
                if (IS_HIGHBIT_SET(ch))
224
224
                        ch = '?';