fix: nil: 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.

Merge branch 'ondrej/unify-handling-of-the-program-name-fix' into 'main'

See merge request isc-projects/bind9!10503
This commit is contained in:
Ondřej Surý 2025-05-29 04:35:08 +00:00
commit 992be6598f
2 changed files with 2 additions and 2 deletions

View file

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

View file

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