mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 16:24:39 +02:00
- djm@cvs.openbsd.org 2012/12/03 00:14:06
[auth2-chall.c ssh-keygen.c] Fix compilation with -Wall -Werror (trivial type fixes)
This commit is contained in:
parent
999bd2d259
commit
55aca027ed
@ -30,6 +30,9 @@
|
|||||||
- djm@cvs.openbsd.org 2012/12/02 20:47:48
|
- djm@cvs.openbsd.org 2012/12/02 20:47:48
|
||||||
[Makefile regress/forward-control.sh]
|
[Makefile regress/forward-control.sh]
|
||||||
regress for AllowTcpForwarding local/remote; ok markus@
|
regress for AllowTcpForwarding local/remote; ok markus@
|
||||||
|
- djm@cvs.openbsd.org 2012/12/03 00:14:06
|
||||||
|
[auth2-chall.c ssh-keygen.c]
|
||||||
|
Fix compilation with -Wall -Werror (trivial type fixes)
|
||||||
|
|
||||||
20121114
|
20121114
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: auth2-chall.c,v 1.35 2012/12/02 20:34:09 djm Exp $ */
|
/* $OpenBSD: auth2-chall.c,v 1.36 2012/12/03 00:14:06 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2001 Markus Friedl. All rights reserved.
|
* Copyright (c) 2001 Markus Friedl. All rights reserved.
|
||||||
* Copyright (c) 2001 Per Allansson. All rights reserved.
|
* Copyright (c) 2001 Per Allansson. All rights reserved.
|
||||||
@ -283,7 +283,8 @@ input_userauth_info_response(int type, u_int32_t seq, void *ctxt)
|
|||||||
KbdintAuthctxt *kbdintctxt;
|
KbdintAuthctxt *kbdintctxt;
|
||||||
int authenticated = 0, res;
|
int authenticated = 0, res;
|
||||||
u_int i, nresp;
|
u_int i, nresp;
|
||||||
char *devicename = NULL, **response = NULL;
|
const char *devicename = NULL;
|
||||||
|
char **response = NULL;
|
||||||
|
|
||||||
if (authctxt == NULL)
|
if (authctxt == NULL)
|
||||||
fatal("input_userauth_info_response: no authctxt");
|
fatal("input_userauth_info_response: no authctxt");
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: ssh-keygen.c,v 1.219 2012/11/14 02:32:15 djm Exp $ */
|
/* $OpenBSD: ssh-keygen.c,v 1.220 2012/12/03 00:14:06 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
@ -104,7 +104,7 @@ char *identity_comment = NULL;
|
|||||||
char *ca_key_path = NULL;
|
char *ca_key_path = NULL;
|
||||||
|
|
||||||
/* Certificate serial number */
|
/* Certificate serial number */
|
||||||
long long cert_serial = 0;
|
unsigned long long cert_serial = 0;
|
||||||
|
|
||||||
/* Key type when certifying */
|
/* Key type when certifying */
|
||||||
u_int cert_key_type = SSH2_CERT_TYPE_USER;
|
u_int cert_key_type = SSH2_CERT_TYPE_USER;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user