2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 18:19:42 +00:00

Allow keystore.c to compile on Solaris

keystore.c failed to compile on Solaris because NAME_MAX was
undefined.  Include 'isc/dir.h' which defines NAME_MAX for platforms
that don't define it.

(cherry picked from commit 521bf1d50fec0f95e096d31ba671ef8aad4e81f8)
This commit is contained in:
Mark Andrews 2025-05-30 15:14:38 +10:00
parent 24e2b7ab88
commit 8db49cc335

View File

@ -17,6 +17,7 @@
#include <isc/assertions.h> #include <isc/assertions.h>
#include <isc/buffer.h> #include <isc/buffer.h>
#include <isc/dir.h>
#include <isc/mem.h> #include <isc/mem.h>
#include <isc/time.h> #include <isc/time.h>
#include <isc/util.h> #include <isc/util.h>