1From fa57e161fc953264a75d50a787cb83983e60acc7 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 30 Aug 2017 18:30:02 -0700
4Subject: [PATCH] tftp: Include missing fcntl.h
5
6Signed-off-by: Khem Raj <raj.khem@gmail.com>
7---
8Upstream-Status: Pending
9
10 tftp/main.c | 1 +
11 1 file changed, 1 insertion(+)
12
13diff --git a/tftp/main.c b/tftp/main.c
14index 8c54843..5c9b698 100644
15--- a/tftp/main.c
16+++ b/tftp/main.c
17@@ -63,6 +63,7 @@ char main_rcsid[] =
18 #include <ctype.h>
19 #include <netdb.h>
20 #include <unistd.h>
21+#include <fcntl.h>
22
23 #include "tftpsubs.h"  /* for mysignal() */
24
25--
262.14.1
27
28