From: Andreas Piesk Date: Fri, 22 Dec 2017 10:05:02 +0000 (+0000) Subject: Fix build of nisplus lookup X-Git-Tag: exim-4_91_RC1~142 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/8dcf2dc4a641fb142ec0b27538e9ffcf0c2407fc Fix build of nisplus lookup --- diff --git a/src/src/lookups/nisplus.c b/src/src/lookups/nisplus.c index e4184bbd6..7cd00eedf 100644 --- a/src/src/lookups/nisplus.c +++ b/src/src/lookups/nisplus.c @@ -54,7 +54,6 @@ nis_object *tno, *eno; struct entry_obj *eo; struct table_obj *ta; uschar *p = query + length; -uschar *yield = NULL; gstring * yield = NULL; do_cache = do_cache; /* Placate picky compilers */ @@ -173,7 +172,7 @@ for (i = 0; i < eo->en_cols.en_cols_len; i++) yield = string_catn(yield, US"\"", 1); } else - eyield = string_catn(yield, value, len); + yield = string_catn(yield, value, len); yield = string_catn(yield, US" ", 1); }