~ubuntu-branches/ubuntu/natty/postfix/natty-security

« back to all changes in this revision

Viewing changes to src/global/db_common.c

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2011-02-22 05:26:41 UTC
  • mfrom: (1.1.27 upstream)
  • Revision ID: james.westby@ubuntu.com-20110222052641-l05d2bsz2kka0yca
Tags: 2.8.0-1~build1
natty version

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
    STRING_LIST *domain;
162
162
    int     flags;
163
163
    int     nparts;
164
 
}       DB_COMMON_CTX;
 
164
} DB_COMMON_CTX;
165
165
 
166
166
/* db_common_parse - validate query or result template */
167
167
 
168
168
int     db_common_parse(DICT *dict, void **ctxPtr, const char *format, int query)
169
169
{
170
 
    DB_COMMON_CTX *ctx = (DB_COMMON_CTX *) * ctxPtr;
 
170
    DB_COMMON_CTX *ctx = (DB_COMMON_CTX *) *ctxPtr;
171
171
    const char *cp;
172
172
    int     dynamic = 0;
173
173