summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarekm72 <35698605+marekm72@users.noreply.github.com>2025-02-28 18:42:49 +0100
committerGitHub <noreply@github.com>2025-02-28 18:42:49 +0100
commit5f7b338a8694825e2424077d8e6a9b23aee05334 (patch)
tree221eb4f1091392aab438720609c273d9a826ae2d
parentf14f6334fda7b78191c9ab23d2bdef2bf5597860 (diff)
downloadmtu1280d-patch-2.tar.gz
mtu1280d-patch-2.zip
Update mtu1280d.c to fix gcc warningspatch-2
-rw-r--r--mtu1280d.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mtu1280d.c b/mtu1280d.c
index 2876d96..d39187e 100644
--- a/mtu1280d.c
+++ b/mtu1280d.c
@@ -21,6 +21,7 @@
#include <fcntl.h>
#include <netinet/in.h>
#include <sys/socket.h>
+#include <sys/ioctl.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <netinet/ip.h>
@@ -81,7 +82,7 @@ typedef struct fullframe {
int
sockfd(void)
{
- static sock = 0;
+ static int sock = 0;
if (!sock) {
sock = socket(AF_PACKET, SOCK_RAW, IPPROTO_RAW);
};