> From: Jeremy Harris
> > store_get() is not part of the API documented (in local_scan.h) as
> > being usable by local_scan and dlexpand code.
>
> I see however that it _is_ described as part of the API in the
> documentation chapter on local-scan. My apologies.
>
> I'll get that chapter touched up for the new interface
In my ${dlfunc module I use:
uschar *dir = expand_string(US "$spool_directory/grey");
size_t dir_len = strlen(dir);
uschar *filename = US store_get(dir_len+257);
Do I need to change that since 4.93 to this?
uschar *dir = expand_string(US "$spool_directory/grey");
size_t dir_len = strlen(dir);
uschar *filename = US store_get(dir_len+257, FALSE);
--
## List details at https://lists.exim.org/mailman/listinfo/exim-users
## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://wiki.exim.org/