X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/6545de78cb822ab5db97a2f16fe7a42cc9488bd8..7e3ce68e68ab9b8906a637d352993abf361554e2:/src/src/lookups/ibase.c diff --git a/src/src/lookups/ibase.c b/src/src/lookups/ibase.c index 72c8de015..6405a6448 100644 --- a/src/src/lookups/ibase.c +++ b/src/src/lookups/ibase.c @@ -1,10 +1,8 @@ -/* $Cambridge: exim/src/src/lookups/ibase.c,v 1.5 2009/11/16 19:50:38 nm4 Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2009 */ +/* Copyright (c) University of Cambridge 1995 - 2015 */ /* See the file NOTICE for conditions of use and distribution. */ /* The code in this module was contributed by Ard Biesheuvel. */ @@ -355,14 +353,14 @@ has the password removed. This copy is also used for debugging output. */ } if (result != NULL) - result = string_cat(result, &ssize, &offset, US "\n", 1); + result = string_catn(result, &ssize, &offset, US "\n", 1); /* Find the number of fields returned. If this is one, we don't add field names to the data. Otherwise we do. */ if (out_sqlda->sqld == 1) { if (out_sqlda->sqlvar[0].sqlind == NULL || *out_sqlda->sqlvar[0].sqlind != -1) /* NULL value yields nothing */ result = - string_cat(result, &ssize, &offset, US buffer, + string_catn(result, &ssize, &offset, US buffer, fetch_field(buffer, sizeof(buffer), &out_sqlda->sqlvar[0])); } @@ -376,19 +374,19 @@ has the password removed. This copy is also used for debugging output. */ string_cat(result, &ssize, &offset, US out_sqlda->sqlvar[i].aliasname, out_sqlda->sqlvar[i].aliasname_length); - result = string_cat(result, &ssize, &offset, US "=", 1); + result = string_catn(result, &ssize, &offset, US "=", 1); /* Quote the value if it contains spaces or is empty */ if (*out_sqlda->sqlvar[i].sqlind == -1) { /* NULL value */ result = - string_cat(result, &ssize, &offset, US "\"\"", 2); + string_catn(result, &ssize, &offset, US "\"\"", 2); } else if (buffer[0] == 0 || Ustrchr(buffer, ' ') != NULL) { int j; result = - string_cat(result, &ssize, &offset, US "\"", 1); + string_catn(result, &ssize, &offset, US "\"", 1); for (j = 0; j < len; j++) { if (buffer[j] == '\"' || buffer[j] == '\\') result = @@ -399,13 +397,12 @@ has the password removed. This copy is also used for debugging output. */ US buffer + j, 1); } result = - string_cat(result, &ssize, &offset, US "\"", 1); + string_catn(result, &ssize, &offset, US "\"", 1); } else { result = - string_cat(result, &ssize, &offset, US buffer, - len); + string_catn(result, &ssize, &offset, US buffer, len); } - result = string_cat(result, &ssize, &offset, US " ", 1); + result = string_catn(result, &ssize, &offset, US " ", 1); } } @@ -453,7 +450,7 @@ deferred with a retryable error. */ static int ibase_find(void *handle, uschar * filename, uschar * query, int length, - uschar ** result, uschar ** errmsg, BOOL *do_cache) + uschar ** result, uschar ** errmsg, uint *do_cache) { int sep = 0; uschar *server; @@ -579,7 +576,7 @@ static lookup_info _lookup_info = { #ifdef DYNLOOKUP #define ibase_lookup_module_info _lookup_module_info #endif - + static lookup_info *_lookup_list[] = { &_lookup_info }; lookup_module_info ibase_lookup_module_info = { LOOKUP_MODULE_INFO_MAGIC, _lookup_list, 1 };