summaryrefslogtreecommitdiff
path: root/auth.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-01-17 04:20:53 +0000
committerDamien Miller <djm@mindrot.org>2019-01-17 15:47:24 +1100
commit943d0965263cae1c080ce5a9d0b5aa341885e55d (patch)
tree543298bf95d3ff357dd677c16db174a5b555b58a /auth.c
parentdbb4dec6d5d671b5e9d67ef02162a610ad052068 (diff)
upstream: include time.h for time(3)/nanosleep(2); from Ian
McKellar OpenBSD-Commit-ID: 6412ccd06a88f65b207a1089345f51fa1244ea51
Diffstat (limited to 'auth.c')
-rw-r--r--auth.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/auth.c b/auth.c
index d2a8cd65b..7d48d07a8 100644
--- a/auth.c
+++ b/auth.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth.c,v 1.134 2018/11/16 03:26:01 djm Exp $ */ 1/* $OpenBSD: auth.c,v 1.135 2019/01/17 04:20:53 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * 4 *
@@ -50,6 +50,7 @@
50#include <unistd.h> 50#include <unistd.h>
51#include <limits.h> 51#include <limits.h>
52#include <netdb.h> 52#include <netdb.h>
53#include <time.h>
53 54
54#include "xmalloc.h" 55#include "xmalloc.h"
55#include "match.h" 56#include "match.h"