Include "util.h", not <util.h>. The header is in the same directory

as the C file. There may be a <util.h> on the host when compiling
on macOS or Linux, causing conflicts.
This commit is contained in:
marcel 2016-10-24 17:57:46 +00:00
parent 62a3d0f9f6
commit 7c04d42209

View File

@ -36,7 +36,8 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <util.h>
#include "util.h"
char *
flags_to_string(u_long flags, const char *def)