diff options
| author | Donald Sharp <shaprd@cumulusnetworks.com> | 2016-04-15 15:01:46 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-04-15 15:02:58 -0400 |
| commit | 4b25d72d18f49bbd658601d27e7f0fc1955067ee (patch) | |
| tree | 183b3adf7adc998de483205bf8c62d4b8d62123b | |
| parent | 8f6899f25b27f7bf1ad562d8f991d9407fee266e (diff) | |
lib: Fix json.c compile on older platforms
The header file inclusions for json.c was wrong.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
| -rw-r--r-- | lib/json.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/json.c b/lib/json.c index f78bfcd844..58f0e995f2 100644 --- a/lib/json.c +++ b/lib/json.c @@ -19,7 +19,8 @@ * 02111-1307, USA. */ -#include <string.h> +#include <zebra.h> + #include "lib/json.h" /* |
