summaryrefslogtreecommitdiff
path: root/src/print_disk_info.c
diff options
context:
space:
mode:
authorTommie Gannert <tommie@gannert.se>2016-08-01 14:34:39 +0100
committerTommie Gannert <tommie@gannert.se>2016-08-14 11:52:27 +0100
commit7728cff37044943b05c4f9de5e9c6ef3d9e14a12 (patch)
tree4b0c6dc62f30692624367f9d53fac933fa424f36 /src/print_disk_info.c
parent185d70ecbb2470468ab34229e6c461094a4cceb8 (diff)
Make print_disk_info, print_eth_info and print_wireless_info compile on NetBSD without warnings.
Diffstat (limited to 'src/print_disk_info.c')
-rw-r--r--src/print_disk_info.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/print_disk_info.c b/src/print_disk_info.c
index 629e05b..edc69ac 100644
--- a/src/print_disk_info.c
+++ b/src/print_disk_info.c
@@ -10,6 +10,7 @@
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || (__OpenBSD__) || defined(__DragonFly__) || defined(__APPLE__)
#include <sys/param.h>
#include <sys/mount.h>
+#elif defined(__NetBSD__)
#else
#include <mntent.h>
#endif
@@ -121,6 +122,11 @@ void print_disk_info(yajl_gen json_gen, char *buffer, const char *path, const ch
if (statfs(path, &buf) == -1)
return;
+#elif defined(__NetBSD__)
+ struct statvfs buf;
+
+ if (statvfs(path, &buf) == -1)
+ return;
#else
struct statvfs buf;