diff options
author | Damien Miller <djm@mindrot.org> | 2010-08-03 08:03:29 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-08-03 08:03:29 +0200 |
commit | 844cccfc1ae3bde48aa481bb8522d482fc8e7a0e (patch) | |
tree | c2bdf4dad44f9a19240e30d8a49bdf7f6c2f7b02 /ssh-keygen.c | |
parent | - (dtucker) [monitor.c] Bug #1795: Initialize the values to be returned from (diff) | |
download | openssh-844cccfc1ae3bde48aa481bb8522d482fc8e7a0e.tar.xz openssh-844cccfc1ae3bde48aa481bb8522d482fc8e7a0e.zip |
- OpenBSD CVS Sync
- djm@cvs.openbsd.org 2010/07/16 04:45:30
[ssh-keygen.c]
avoid bogus compiler warning
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r-- | ssh-keygen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c index 48209380c..56bfee20d 100644 --- a/ssh-keygen.c +++ b/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.194 2010/06/30 07:26:03 jmc Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.195 2010/07/16 04:45:30 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -580,7 +580,7 @@ static void do_convert_from(struct passwd *pw) { Key *k = NULL; - int private = 0, ok; + int private = 0, ok = 0; struct stat st; if (!have_identity) |