[auth.h dispatch.c kex.h sftp-client.c]
     #include <signal.h> for sig_atomic_t; need this prior to <sys/param.h>
     move
This commit is contained in:
Damien Miller 2006-07-24 14:14:19 +10:00
parent e3476ed03b
commit d8337c5e60
5 changed files with 15 additions and 5 deletions

View File

@ -95,6 +95,10 @@
[ssh-keysign.c ssh-rsa.c ssh.c sshconnect.c sshconnect1.c sshconnect2.c]
[sshd.c sshlogin.c sshpty.c ttymodes.c uidswap.c xmalloc.c]
move #include <string.h> out of includes.h
- stevesk@cvs.openbsd.org 2006/07/23 01:11:05
[auth.h dispatch.c kex.h sftp-client.c]
#include <signal.h> for sig_atomic_t; need this prior to <sys/param.h>
move
20060713
- (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h
@ -5013,4 +5017,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.4428 2006/07/24 04:13:33 djm Exp $
$Id: ChangeLog,v 1.4429 2006/07/24 04:14:19 djm Exp $

3
auth.h
View File

@ -1,4 +1,4 @@
/* $OpenBSD: auth.h,v 1.54 2006/07/06 16:03:53 stevesk Exp $ */
/* $OpenBSD: auth.h,v 1.55 2006/07/23 01:11:05 stevesk Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
@ -32,6 +32,7 @@
#include <signal.h>
#include <pwd.h>
#include <signal.h>
#include "buffer.h"
#include <openssl/rsa.h>

View File

@ -1,4 +1,4 @@
/* $OpenBSD: dispatch.c,v 1.19 2006/04/20 09:27:09 djm Exp $ */
/* $OpenBSD: dispatch.c,v 1.20 2006/07/23 01:11:05 stevesk Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@ -24,6 +24,8 @@
*/
#include "includes.h"
#include <signal.h>
#include "ssh1.h"
#include "ssh2.h"
#include "log.h"

5
kex.h
View File

@ -1,4 +1,4 @@
/* $OpenBSD: kex.h,v 1.42 2006/04/20 09:27:09 djm Exp $ */
/* $OpenBSD: kex.h,v 1.43 2006/07/23 01:11:05 stevesk Exp $ */
/*
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
@ -28,6 +28,9 @@
#include <signal.h>
#include <openssl/evp.h>
#include <signal.h>
#include "buffer.h"
#include "cipher.h"
#include "key.h"

View File

@ -1,4 +1,4 @@
/* $OpenBSD: sftp-client.c,v 1.69 2006/07/22 20:48:23 stevesk Exp $ */
/* $OpenBSD: sftp-client.c,v 1.70 2006/07/23 01:11:05 stevesk Exp $ */
/*
* Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
*