1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: include <strings.h> header file
Author: NAKAJIMA Yusaku <yupong7@gmail.com>
Origin: https://github.com/oetiker/mrtg/pull/101
Bug: https://github.com/oetiker/mrtg/issues/99
Last-Update: 2022-10-27
Index: mrtg/src/rateup.c
===================================================================
--- mrtg.orig/src/rateup.c
+++ mrtg/src/rateup.c
@@ -38,6 +38,9 @@
#include "../config.h"
#endif
#endif
+#ifdef HAVE_STRINGS_H
+#include <strings.h>
+#endif
#include <unistd.h>
#include <sys/types.h>
#include <limits.h>
|