blob: a5e634caab0fd6378e02843c1efce1e1c73056b3 [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From 23b068e695881be0e8205ecccadf775fc3d5889d Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 6 Sep 2022 21:25:50 -0700
4Subject: [PATCH] utility: Include time.h form time() and strftime() prototypes
5
6Upstream-Status: Pending
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9---
10 telnetd/utility.c | 1 +
11 1 file changed, 1 insertion(+)
12
13diff --git a/telnetd/utility.c b/telnetd/utility.c
14index 4811f14..b539777 100644
15--- a/telnetd/utility.c
16+++ b/telnetd/utility.c
17@@ -40,6 +40,7 @@ char util_rcsid[] =
18 #define PRINTOPTIONS
19
20 #include <stdarg.h>
21+#include <time.h> /* for time() anf strftime() */
22 #include <sys/utsname.h>
23
24 #ifdef AUTHENTICATE
25--
262.37.3
27