Fix build on 10

This commit is contained in:
Bryan Drewery
2013-11-15 15:54:10 +00:00
parent 9d85a4d228
commit ae9e411e8b
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
--- ./src/nfsping.h.orig 2013-10-17 23:14:46.000000000 -0500
+++ ./src/nfsping.h 2013-11-15 09:52:50.587560177 -0600
@@ -13,6 +13,7 @@
#include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
+#include <arpa/inet.h>
#include <netdb.h>
#include <unistd.h>
#include <math.h>

View File

@@ -0,0 +1,11 @@
--- ./src/util.c.orig 2013-11-15 09:53:06.149558492 -0600
+++ ./src/util.c 2013-11-15 09:53:18.903559033 -0600
@@ -123,7 +123,7 @@
if (tmp) {
next->path = strdup(tmp);
/* the root filehandle in hex */
- if (tmp = strtok(NULL, ":")) {
+ if ((tmp = strtok(NULL, ":"))) {
/* hex takes two characters for each byte */
fsroot_len = strlen(tmp) / 2;