2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-01 06:55:30 +00:00

Remove spurious zconf.h include

The #include <zconf.h> got spuriously included into isc_commandline
unit.  The #include <limits.h> needs to be used instead.
This commit is contained in:
Ondřej Surý
2025-05-29 06:30:59 +02:00
parent 33f17c2384
commit 15ddacbf17
2 changed files with 2 additions and 2 deletions

View File

@@ -47,9 +47,9 @@
* and format in the ISC coding style. * and format in the ISC coding style.
*/ */
#include <limits.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdio.h> #include <stdio.h>
#include <zconf.h>
#include <isc/commandline.h> #include <isc/commandline.h>
#include <isc/file.h> #include <isc/file.h>

View File

@@ -15,8 +15,8 @@
/*! \file isc/commandline.h */ /*! \file isc/commandline.h */
#include <limits.h>
#include <stdbool.h> #include <stdbool.h>
#include <zconf.h>
#include <isc/result.h> #include <isc/result.h>
#include <isc/types.h> #include <isc/types.h>