mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-27 14:44:21 +08: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]
|
||||
refuse to generate keys longer than OPENSSL_[RD]SA_MAX_MODULUS_BITS,
|
||||
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
|
||||
- (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) 2008 Damien Miller. All rights reserved.
|
||||
@ -195,7 +195,7 @@ struct Authctxt {
|
||||
const char *host;
|
||||
const char *service;
|
||||
Authmethod *method;
|
||||
int success;
|
||||
sig_atomic_t success;
|
||||
char *authlist;
|
||||
/* pubkey */
|
||||
Idlist keys;
|
||||
|
Loading…
Reference in New Issue
Block a user