summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 14:03:06 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 14:03:06 +1100
commit42fb06898ed362df4c58226fc449dbe738d4ea3f (patch)
treebd9418773c707412b5493fdf43daa04253a45f78
parent3717cdac6087c3e5a0df0def4d3c41694e1b55fe (diff)
- (djm) [ssh-agent.c] Restore dropped stat.h
-rw-r--r--ChangeLog3
-rw-r--r--ssh-agent.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0edca130a..54bfc7c06 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -255,6 +255,7 @@
255 - (djm) [openbsd-compat/sha2.h] Avoid include macro clash with 255 - (djm) [openbsd-compat/sha2.h] Avoid include macro clash with
256 system sha2.h 256 system sha2.h
257 - (djm) [ssh-rand-helper.c] Needs a bunch of headers 257 - (djm) [ssh-rand-helper.c] Needs a bunch of headers
258 - (djm) [ssh-agent.c] Restore dropped stat.h
258 259
25920060313 26020060313
260 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong) 261 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -4156,4 +4157,4 @@
4156 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4157 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4157 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4158 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4158 4159
4159$Id: ChangeLog,v 1.4215 2006/03/15 03:02:36 djm Exp $ 4160$Id: ChangeLog,v 1.4216 2006/03/15 03:03:06 djm Exp $
diff --git a/ssh-agent.c b/ssh-agent.c
index b45087629..b09ce86f2 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -37,6 +37,7 @@
37RCSID("$OpenBSD: ssh-agent.c,v 1.129 2006/02/20 17:02:44 stevesk Exp $"); 37RCSID("$OpenBSD: ssh-agent.c,v 1.129 2006/02/20 17:02:44 stevesk Exp $");
38 38
39#include <sys/types.h> 39#include <sys/types.h>
40#include <sys/stat.h>
40#ifdef HAVE_SYS_UN_H 41#ifdef HAVE_SYS_UN_H
41# include <sys/un.h> 42# include <sys/un.h>
42#endif 43#endif