From 630374d49b6f701b412f6440da67b6a4e370d4dc Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Thu, 7 Sep 2017 19:52:01 +0200 Subject: [PATCH] src: #include when using strtonum() `strtonum()` seems to work without it, but there is a hint in issue #242 that there is something fishy around that. --- src/client/conf-lldp.c | 1 + src/daemon/lldpd.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/client/conf-lldp.c b/src/client/conf-lldp.c index c16219bd..c9939f1b 100644 --- a/src/client/conf-lldp.c +++ b/src/client/conf-lldp.c @@ -17,6 +17,7 @@ #include #include +#include #include "client.h" #include "../log.h" diff --git a/src/daemon/lldpd.c b/src/daemon/lldpd.c index 6603d604..45397fd3 100644 --- a/src/daemon/lldpd.c +++ b/src/daemon/lldpd.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include -- 2.39.5