diff options
author | Damien Miller <djm@mindrot.org> | 2006-07-10 21:08:03 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-07-10 21:08:03 +1000 |
commit | e3b60b524edcc55d71e7ccb0958fd69a0e525f30 (patch) | |
tree | ceaca7ce2723398bb44d4c9ecf92dfe419d0f401 /ssh-agent.c | |
parent | 58059aef053a0b925c70b9804930e3fe17edfac8 (diff) | |
download | openssh-git-e3b60b524edcc55d71e7ccb0958fd69a0e525f30.tar.gz |
- stevesk@cvs.openbsd.org 2006/07/08 21:47:12
[authfd.c canohost.c clientloop.c dns.c dns.h includes.h]
[monitor_fdpass.c nchan.c packet.c servconf.c sftp.c ssh-agent.c]
[ssh-keyscan.c ssh.c sshconnect.h sshd.c sshlogin.h]
move #include <sys/socket.h> out of includes.h
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index db3935ec..87e94b0e 100644 --- a/ssh-agent.c +++ b/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.140 2006/06/13 02:17:07 djm Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.141 2006/07/08 21:47:12 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -38,11 +38,13 @@ #include <sys/types.h> #include <sys/stat.h> +#include <sys/socket.h> #ifdef HAVE_SYS_UN_H # include <sys/un.h> #endif #include "openbsd-compat/sys-queue.h" #include <sys/resource.h> + #ifdef HAVE_PATHS_H # include <paths.h> #endif |