- (djm) [auth-pam.c auth-shadow.c auth2-none.c cleanup.c sshd.c]

[openbsd-compat/port-tun.c openbsd-compat/port-tun.h] Sprinkle more
   includes for Linux in
This commit is contained in:
Damien Miller 2006-08-05 14:07:20 +10:00
parent d04db59ad9
commit 75bb664458
8 changed files with 20 additions and 5 deletions

View File

@ -93,6 +93,9 @@
- (djm) [openbsd-compat/regress/snprintftest.c]
[openbsd-compat/regress/strduptest.c] Add missing includes so they pass
compilation with "-Wall -Werror"
- (djm) [auth-pam.c auth-shadow.c auth2-none.c cleanup.c sshd.c]
[openbsd-compat/port-tun.c openbsd-compat/port-tun.h] Sprinkle more
includes for Linux in
20060804
- (dtucker) [configure.ac] The "crippled AES" test does not work on recent
@ -5163,4 +5166,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.4457 2006/08/05 03:27:29 djm Exp $
$Id: ChangeLog,v 1.4458 2006/08/05 04:07:20 djm Exp $

View File

@ -78,19 +78,24 @@
# define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member)
#endif
#include "xmalloc.h"
#include "buffer.h"
#include "key.h"
#include "hostfile.h"
#include "auth.h"
#include "auth-pam.h"
#include "buffer.h"
#include "canohost.h"
#include "log.h"
#include "monitor_wrap.h"
#include "msg.h"
#include "packet.h"
#include "misc.h"
#include "servconf.h"
#include "ssh2.h"
#include "xmalloc.h"
#include "auth-options.h"
#ifdef GSSAPI
#include "ssh-gss.h"
#endif
#include "monitor_wrap.h"
extern ServerOptions options;
extern Buffer loginmsg;

View File

@ -28,6 +28,8 @@
#include <shadow.h>
#include <string.h>
#include "key.h"
#include "hostfile.h"
#include "auth.h"
#include "buffer.h"
#include "log.h"

View File

@ -29,6 +29,7 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include "xmalloc.h"
#include "key.h"

View File

@ -15,7 +15,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include "includes.h"
#include <sys/types.h>

View File

@ -29,6 +29,7 @@
#include "log.h"
#include "misc.h"
#include "buffer.h"
#include "channels.h"
/*
* This is the portable version of the SSH tunnel forwarding, it

View File

@ -17,6 +17,8 @@
#ifndef _PORT_TUN_H
#define _PORT_TUN_H
struct Channel;
#if defined(SSH_TUN_LINUX) || defined(SSH_TUN_FREEBSD)
# define CUSTOM_SYS_TUN_OPEN
int sys_tun_open(int, int);

1
sshd.c
View File

@ -68,6 +68,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <openssl/dh.h>
#include <openssl/bn.h>