- 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
This commit is contained in:
parent
e3b60b524e
commit
e33b60343b
|
@ -61,6 +61,10 @@
|
||||||
[monitor_fdpass.c nchan.c packet.c servconf.c sftp.c ssh-agent.c]
|
[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]
|
[ssh-keyscan.c ssh.c sshconnect.h sshd.c sshlogin.h]
|
||||||
move #include <sys/socket.h> out of includes.h
|
move #include <sys/socket.h> out of includes.h
|
||||||
|
- 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
|
||||||
|
|
||||||
20060706
|
20060706
|
||||||
- (dtucker) [configure.ac] Try AIX blibpath test in different order when
|
- (dtucker) [configure.ac] Try AIX blibpath test in different order when
|
||||||
|
@ -4794,4 +4798,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4374 2006/07/10 11:08:03 djm Exp $
|
$Id: ChangeLog,v 1.4375 2006/07/10 11:08:34 djm Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: monitor.c,v 1.78 2006/07/06 16:03:53 stevesk Exp $ */
|
/* $OpenBSD: monitor.c,v 1.79 2006/07/08 21:48:53 stevesk Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
|
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
|
||||||
* Copyright 2002 Markus Friedl <markus@openbsd.org>
|
* Copyright 2002 Markus Friedl <markus@openbsd.org>
|
||||||
|
@ -30,6 +30,7 @@
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
|
||||||
#ifdef HAVE_PATHS_H
|
#ifdef HAVE_PATHS_H
|
||||||
#include <paths.h>
|
#include <paths.h>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: session.c,v 1.206 2006/07/06 16:03:53 stevesk Exp $ */
|
/* $OpenBSD: session.c,v 1.207 2006/07/08 21:48:53 stevesk Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
* All rights reserved
|
* All rights reserved
|
||||||
|
|
Loading…
Reference in New Issue