diff options
author | Damien Miller <djm@mindrot.org> | 2006-07-10 21:08:34 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-07-10 21:08:34 +1000 |
commit | e33b60343b7cef82ec229d7bfec008d3a932f2ad (patch) | |
tree | 66cd300aaf85429bfe06d6b46e84ac259901bb5c | |
parent | e3b60b524edcc55d71e7ccb0958fd69a0e525f30 (diff) |
- stevesk@cvs.openbsd.org 2006/07/08 21:48:53
[monitor.c session.c]
missed these from last commit:
move #include <sys/socket.h> out of includes.h
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | monitor.c | 3 | ||||
-rw-r--r-- | session.c | 2 |
3 files changed, 8 insertions, 3 deletions
@@ -61,6 +61,10 @@ | |||
61 | [monitor_fdpass.c nchan.c packet.c servconf.c sftp.c ssh-agent.c] | 61 | [monitor_fdpass.c nchan.c packet.c servconf.c sftp.c ssh-agent.c] |
62 | [ssh-keyscan.c ssh.c sshconnect.h sshd.c sshlogin.h] | 62 | [ssh-keyscan.c ssh.c sshconnect.h sshd.c sshlogin.h] |
63 | move #include <sys/socket.h> out of includes.h | 63 | move #include <sys/socket.h> out of includes.h |
64 | - stevesk@cvs.openbsd.org 2006/07/08 21:48:53 | ||
65 | [monitor.c session.c] | ||
66 | missed these from last commit: | ||
67 | move #include <sys/socket.h> out of includes.h | ||
64 | 68 | ||
65 | 20060706 | 69 | 20060706 |
66 | - (dtucker) [configure.ac] Try AIX blibpath test in different order when | 70 | - (dtucker) [configure.ac] Try AIX blibpath test in different order when |
@@ -4794,4 +4798,4 @@ | |||
4794 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 4798 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
4795 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 4799 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
4796 | 4800 | ||
4797 | $Id: ChangeLog,v 1.4374 2006/07/10 11:08:03 djm Exp $ | 4801 | $Id: ChangeLog,v 1.4375 2006/07/10 11:08:34 djm Exp $ |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: monitor.c,v 1.78 2006/07/06 16:03:53 stevesk Exp $ */ | 1 | /* $OpenBSD: monitor.c,v 1.79 2006/07/08 21:48:53 stevesk Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright 2002 Niels Provos <provos@citi.umich.edu> | 3 | * Copyright 2002 Niels Provos <provos@citi.umich.edu> |
4 | * Copyright 2002 Markus Friedl <markus@openbsd.org> | 4 | * Copyright 2002 Markus Friedl <markus@openbsd.org> |
@@ -30,6 +30,7 @@ | |||
30 | #include <sys/types.h> | 30 | #include <sys/types.h> |
31 | #include <sys/socket.h> | 31 | #include <sys/socket.h> |
32 | #include <sys/wait.h> | 32 | #include <sys/wait.h> |
33 | #include <sys/socket.h> | ||
33 | 34 | ||
34 | #ifdef HAVE_PATHS_H | 35 | #ifdef HAVE_PATHS_H |
35 | #include <paths.h> | 36 | #include <paths.h> |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: session.c,v 1.206 2006/07/06 16:03:53 stevesk Exp $ */ | 1 | /* $OpenBSD: session.c,v 1.207 2006/07/08 21:48:53 stevesk Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
4 | * All rights reserved | 4 | * All rights reserved |