diff options
author | marekm72 <35698605+marekm72@users.noreply.github.com> | 2025-02-28 18:42:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-28 18:42:49 +0100 |
commit | 5f7b338a8694825e2424077d8e6a9b23aee05334 (patch) | |
tree | 221eb4f1091392aab438720609c273d9a826ae2d | |
parent | f14f6334fda7b78191c9ab23d2bdef2bf5597860 (diff) | |
download | mtu1280d-patch-2.tar.gz mtu1280d-patch-2.zip |
Update mtu1280d.c to fix gcc warningspatch-2
-rw-r--r-- | mtu1280d.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); }; |