diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2007-01-21 01:41:55 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2007-01-21 01:41:55 +0000 |
commit | c069a04073c443f42dbc0e55f719b88437c12b5b (patch) | |
tree | 5691cf80ebfcdbf8dcfbe98eca361a8a1185dbe7 /usr.bin/ssh/kex.c | |
parent | d0f4154372747b0c0e6e1dc98a7ddbb5a7fae157 (diff) |
spaces
Diffstat (limited to 'usr.bin/ssh/kex.c')
-rw-r--r-- | usr.bin/ssh/kex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/kex.c b/usr.bin/ssh/kex.c index dfde2bf27c7..1276bf2136a 100644 --- a/usr.bin/ssh/kex.c +++ b/usr.bin/ssh/kex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kex.c,v 1.76 2006/08/03 03:34:42 deraadt Exp $ */ +/* $OpenBSD: kex.c,v 1.77 2007/01/21 01:41:54 stevesk Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. * @@ -541,7 +541,7 @@ dump_digest(char *msg, u_char *digest, int len) u_int i; fprintf(stderr, "%s\n", msg); - for (i = 0; i< len; i++) { + for (i = 0; i < len; i++) { fprintf(stderr, "%02x", digest[i]); if (i%32 == 31) fprintf(stderr, "\n"); |