~yolanda.robla/ubuntu/saucy/exim4/dep-8-tests

« back to all changes in this revision

Viewing changes to src/routers/iplookup.c

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-14 15:28:08 UTC
  • mfrom: (2.3.18 experimental) (2.1.22 sid)
  • Revision ID: package-import@ubuntu.com-20120614152808-jeyix4g9r95iy6j9
Tags: 4.80-3ubuntu1
* Merge from Debian unstable. Remaining changes:
  - debian/control: Don't declare a Provides: default-mta; in Ubuntu,
    we want postfix to be the default.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Cambridge: exim/src/src/routers/iplookup.c,v 1.11 2009/11/16 19:50:38 nm4 Exp $ */
2
 
 
3
1
/*************************************************
4
2
*     Exim - an Internet mail transport agent    *
5
3
*************************************************/
144
142
  address_item **addr_succeed)    /* put old address here on success */
145
143
{
146
144
uschar *query = NULL;
147
 
uschar reply[256];
 
145
uschar *reply;
148
146
uschar *hostname, *reroute, *domain, *listptr;
149
147
uschar host_buffer[256];
150
148
host_item *host = store_get(sizeof(host_item));
163
161
DEBUG(D_route) debug_printf("%s router called for %s: domain = %s\n",
164
162
  rblock->name, addr->address, addr->domain);
165
163
 
 
164
reply = store_get(256);
 
165
 
166
166
/* Build the query string to send. If not explicitly given, a default of
167
167
"user@domain user@domain" is used. */
168
168