blob: d627cf61654e705e4fbf8d8ae46554a99c005b1c [file] [log] [blame]
José Pekkarinen8e065062021-12-10 16:12:05 +02001From f16fa9796e05ca9ea6ee764b3c1f0b8baed535e8 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Jos=C3=A9=20Pekkarinen?= <jose.pekkarinen@unikie.com>
3Date: Fri, 10 Dec 2021 14:35:45 +0200
4Subject: [PATCH] Fix schedule.c:378:36: error: 'SIOCGSTAMP' undeclared
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Signed-off-by: José Pekkarinen <jose.pekkarinen@unikie.com>
10---
11 src/schedule.c | 1 +
12 1 file changed, 1 insertion(+)
13
14diff --git a/src/schedule.c b/src/schedule.c
15index 8868b01..09ab248 100644
16--- a/src/schedule.c
17+++ b/src/schedule.c
18@@ -23,6 +23,7 @@
19 #include <fcntl.h>
20 #include <sys/ioctl.h>
21 #include <sys/socket.h>
22+#include <linux/sockios.h>
23
24
25 #include "list.h"
26--
272.30.2
28