- (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:
parent
d04db59ad9
commit
75bb664458
|
@ -93,6 +93,9 @@
|
||||||
- (djm) [openbsd-compat/regress/snprintftest.c]
|
- (djm) [openbsd-compat/regress/snprintftest.c]
|
||||||
[openbsd-compat/regress/strduptest.c] Add missing includes so they pass
|
[openbsd-compat/regress/strduptest.c] Add missing includes so they pass
|
||||||
compilation with "-Wall -Werror"
|
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
|
20060804
|
||||||
- (dtucker) [configure.ac] The "crippled AES" test does not work on recent
|
- (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) 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.4457 2006/08/05 03:27:29 djm Exp $
|
$Id: ChangeLog,v 1.4458 2006/08/05 04:07:20 djm Exp $
|
||||||
|
|
11
auth-pam.c
11
auth-pam.c
|
@ -78,19 +78,24 @@
|
||||||
# define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member)
|
# define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "xmalloc.h"
|
||||||
|
#include "buffer.h"
|
||||||
|
#include "key.h"
|
||||||
|
#include "hostfile.h"
|
||||||
#include "auth.h"
|
#include "auth.h"
|
||||||
#include "auth-pam.h"
|
#include "auth-pam.h"
|
||||||
#include "buffer.h"
|
|
||||||
#include "canohost.h"
|
#include "canohost.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "monitor_wrap.h"
|
|
||||||
#include "msg.h"
|
#include "msg.h"
|
||||||
#include "packet.h"
|
#include "packet.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "servconf.h"
|
#include "servconf.h"
|
||||||
#include "ssh2.h"
|
#include "ssh2.h"
|
||||||
#include "xmalloc.h"
|
|
||||||
#include "auth-options.h"
|
#include "auth-options.h"
|
||||||
|
#ifdef GSSAPI
|
||||||
|
#include "ssh-gss.h"
|
||||||
|
#endif
|
||||||
|
#include "monitor_wrap.h"
|
||||||
|
|
||||||
extern ServerOptions options;
|
extern ServerOptions options;
|
||||||
extern Buffer loginmsg;
|
extern Buffer loginmsg;
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
#include <shadow.h>
|
#include <shadow.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "key.h"
|
||||||
|
#include "hostfile.h"
|
||||||
#include "auth.h"
|
#include "auth.h"
|
||||||
#include "buffer.h"
|
#include "buffer.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "key.h"
|
#include "key.h"
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "includes.h"
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "buffer.h"
|
#include "buffer.h"
|
||||||
|
#include "channels.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This is the portable version of the SSH tunnel forwarding, it
|
* This is the portable version of the SSH tunnel forwarding, it
|
||||||
|
|
|
@ -17,6 +17,8 @@
|
||||||
#ifndef _PORT_TUN_H
|
#ifndef _PORT_TUN_H
|
||||||
#define _PORT_TUN_H
|
#define _PORT_TUN_H
|
||||||
|
|
||||||
|
struct Channel;
|
||||||
|
|
||||||
#if defined(SSH_TUN_LINUX) || defined(SSH_TUN_FREEBSD)
|
#if defined(SSH_TUN_LINUX) || defined(SSH_TUN_FREEBSD)
|
||||||
# define CUSTOM_SYS_TUN_OPEN
|
# define CUSTOM_SYS_TUN_OPEN
|
||||||
int sys_tun_open(int, int);
|
int sys_tun_open(int, int);
|
||||||
|
|
Loading…
Reference in New Issue