- stevesk@cvs.openbsd.org 2006/07/11 20:27:56
[authfile.c ssh.c] need <errno.h> here also (it's also included in <openssl/err.h>)
This commit is contained in:
parent
57f4224677
commit
ba72405026
|
@ -40,6 +40,9 @@
|
|||
[ssh.c]
|
||||
cast asterisk field precision argument to int to remove warning;
|
||||
ok markus@
|
||||
- stevesk@cvs.openbsd.org 2006/07/11 20:27:56
|
||||
[authfile.c ssh.c]
|
||||
need <errno.h> here also (it's also included in <openssl/err.h>)
|
||||
|
||||
20060711
|
||||
- (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c
|
||||
|
@ -4889,4 +4892,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.4398 2006/07/12 12:23:35 dtucker Exp $
|
||||
$Id: ChangeLog,v 1.4399 2006/07/12 12:24:22 dtucker Exp $
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: authfile.c,v 1.68 2006/07/09 15:15:10 stevesk Exp $ */
|
||||
/* $OpenBSD: authfile.c,v 1.69 2006/07/11 20:27:56 stevesk Exp $ */
|
||||
/*
|
||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||
|
@ -45,6 +45,7 @@
|
|||
#include <openssl/evp.h>
|
||||
#include <openssl/pem.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
#include "cipher.h"
|
||||
|
|
3
ssh.c
3
ssh.c
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: ssh.c,v 1.284 2006/07/11 20:16:43 stevesk Exp $ */
|
||||
/* $OpenBSD: ssh.c,v 1.285 2006/07/11 20:27:56 stevesk Exp $ */
|
||||
/*
|
||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||
|
@ -52,6 +52,7 @@
|
|||
#include <sys/un.h>
|
||||
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#ifdef HAVE_PATHS_H
|
||||
#include <paths.h>
|
||||
|
|
Loading…
Reference in New Issue