summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--device.c1
-rw-r--r--main.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/device.c b/device.c
index 7307414..8bc8b53 100644
--- a/device.c
+++ b/device.c
@@ -6,6 +6,7 @@
#include <sys/types.h>
#include <sys/socket.h>
#include <net/ethernet.h>
+#include <netinet/ether.h>
#include "netifd.h"
#include "system.h"
diff --git a/main.c b/main.c
index 7d7bfcb..7602f23 100644
--- a/main.c
+++ b/main.c
@@ -2,6 +2,7 @@
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
+#include <unistd.h>
#include "netifd.h"
#include "ubus.h"
@@ -57,7 +58,7 @@ int main(int argc, char **argv)
}
}
- if (netifd_ubus_init(NULL) < 0) {
+ if (netifd_ubus_init(socket) < 0) {
fprintf(stderr, "Failed to connect to ubus\n");
return 1;
}