mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 07:44:29 +02:00
- djm@cvs.openbsd.org 2010/04/26 22:28:24
[sshconnect2.c] bz#1502: authctxt.success is declared as an int, but passed by reference to function that accepts sig_atomic_t*. Convert it to the latter; ok markus@ dtucker@
This commit is contained in:
parent
bebbb7e8a5
commit
79442c07c4
@ -19,6 +19,11 @@
|
|||||||
[ssh-keygen.c]
|
[ssh-keygen.c]
|
||||||
refuse to generate keys longer than OPENSSL_[RD]SA_MAX_MODULUS_BITS,
|
refuse to generate keys longer than OPENSSL_[RD]SA_MAX_MODULUS_BITS,
|
||||||
since we would refuse to use them anyway. bz#1516; ok dtucker@
|
since we would refuse to use them anyway. bz#1516; ok dtucker@
|
||||||
|
- djm@cvs.openbsd.org 2010/04/26 22:28:24
|
||||||
|
[sshconnect2.c]
|
||||||
|
bz#1502: authctxt.success is declared as an int, but passed by
|
||||||
|
reference to function that accepts sig_atomic_t*. Convert it to
|
||||||
|
the latter; ok markus@ dtucker@
|
||||||
|
|
||||||
20100423
|
20100423
|
||||||
- (dtucker) [configure.ac] Bug #1756: Check for the existence of a lib64 dir
|
- (dtucker) [configure.ac] Bug #1756: Check for the existence of a lib64 dir
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: sshconnect2.c,v 1.182 2010/04/16 01:47:26 djm Exp $ */
|
/* $OpenBSD: sshconnect2.c,v 1.183 2010/04/26 22:28:24 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
||||||
* Copyright (c) 2008 Damien Miller. All rights reserved.
|
* Copyright (c) 2008 Damien Miller. All rights reserved.
|
||||||
@ -195,7 +195,7 @@ struct Authctxt {
|
|||||||
const char *host;
|
const char *host;
|
||||||
const char *service;
|
const char *service;
|
||||||
Authmethod *method;
|
Authmethod *method;
|
||||||
int success;
|
sig_atomic_t success;
|
||||||
char *authlist;
|
char *authlist;
|
||||||
/* pubkey */
|
/* pubkey */
|
||||||
Idlist keys;
|
Idlist keys;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user