diff options
author | Damien Miller <djm@mindrot.org> | 2008-11-03 19:16:20 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2008-11-03 19:16:20 +1100 |
commit | c6aadd994d0ed79f5606b7061d576d514fd71cd7 (patch) | |
tree | 1f93e35a62b89fd8edd984327d1008d0abfa1ba2 | |
parent | 9f6fb56ab83da2e795e4a8eb863992701fd83516 (diff) |
- grunk@cvs.openbsd.org 2008/07/25 07:05:16
[key.c]
In random art visualization, make sure to use the end marker only at the
end. Initial diff by Dirk Loss, tweaks and ok djm@
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | key.c | 5 |
2 files changed, 8 insertions, 3 deletions
@@ -7,6 +7,10 @@ | |||
7 | - grunk@cvs.openbsd.org 2008/07/25 06:56:35 | 7 | - grunk@cvs.openbsd.org 2008/07/25 06:56:35 |
8 | [ssh_config] | 8 | [ssh_config] |
9 | Add VisualHostKey to example file, ok djm@ | 9 | Add VisualHostKey to example file, ok djm@ |
10 | - grunk@cvs.openbsd.org 2008/07/25 07:05:16 | ||
11 | [key.c] | ||
12 | In random art visualization, make sure to use the end marker only at the | ||
13 | end. Initial diff by Dirk Loss, tweaks and ok djm@ | ||
10 | 14 | ||
11 | 20080906 | 15 | 20080906 |
12 | - (dtucker) [config.guess config.sub] Update to latest versions from | 16 | - (dtucker) [config.guess config.sub] Update to latest versions from |
@@ -4741,4 +4745,4 @@ | |||
4741 | OpenServer 6 and add osr5bigcrypt support so when someone migrates | 4745 | OpenServer 6 and add osr5bigcrypt support so when someone migrates |
4742 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ | 4746 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ |
4743 | 4747 | ||
4744 | $Id: ChangeLog,v 1.5100 2008/11/03 08:15:44 djm Exp $ | 4748 | $Id: ChangeLog,v 1.5101 2008/11/03 08:16:20 djm Exp $ |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: key.c,v 1.78 2008/07/07 23:32:51 stevesk Exp $ */ | 1 | /* $OpenBSD: key.c,v 1.79 2008/07/25 07:05:16 grunk Exp $ */ |
2 | /* | 2 | /* |
3 | * read_bignum(): | 3 | * read_bignum(): |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -369,7 +369,8 @@ key_fingerprint_randomart(u_char *dgst_raw, u_int dgst_raw_len, const Key *k) | |||
369 | y = MIN(y, FLDSIZE_Y - 1); | 369 | y = MIN(y, FLDSIZE_Y - 1); |
370 | 370 | ||
371 | /* augment the field */ | 371 | /* augment the field */ |
372 | field[x][y]++; | 372 | if (field[x][y] < len - 2) |
373 | field[x][y]++; | ||
373 | input = input >> 2; | 374 | input = input >> 2; |
374 | } | 375 | } |
375 | } | 376 | } |