summaryrefslogtreecommitdiff
path: root/ssh-keygen.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2012-12-03 11:25:30 +1100
committerDamien Miller <djm@mindrot.org>2012-12-03 11:25:30 +1100
commit55aca027ed24f8fdce43bd451ce96b89f979606c (patch)
tree0b39e56f5702315259b4a4a787cae53e94240d80 /ssh-keygen.c
parent999bd2d259c1dacb53a2d8be31d4c1861b58cdb3 (diff)
- djm@cvs.openbsd.org 2012/12/03 00:14:06
[auth2-chall.c ssh-keygen.c] Fix compilation with -Wall -Werror (trivial type fixes)
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r--ssh-keygen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 2d8af679c..1bbe0b0a8 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-keygen.c,v 1.219 2012/11/14 02:32:15 djm Exp $ */ 1/* $OpenBSD: ssh-keygen.c,v 1.220 2012/12/03 00:14:06 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -104,7 +104,7 @@ char *identity_comment = NULL;
104char *ca_key_path = NULL; 104char *ca_key_path = NULL;
105 105
106/* Certificate serial number */ 106/* Certificate serial number */
107long long cert_serial = 0; 107unsigned long long cert_serial = 0;
108 108
109/* Key type when certifying */ 109/* Key type when certifying */
110u_int cert_key_type = SSH2_CERT_TYPE_USER; 110u_int cert_key_type = SSH2_CERT_TYPE_USER;