diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-03-19 10:49:36 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-03-19 10:49:36 +0000 |
commit | 3940e680ced6cc4f8cb02688bf82d1588e221128 (patch) | |
tree | a66e115dda1a17d94b172aea95faceb8fc31ee98 /usr.bin/ssh/cipher.c | |
parent | ac340ec548cced8f80e2abfbd05c89d1f32b19a6 (diff) |
KNF whitespace
Diffstat (limited to 'usr.bin/ssh/cipher.c')
-rw-r--r-- | usr.bin/ssh/cipher.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/ssh/cipher.c b/usr.bin/ssh/cipher.c index a4709fb4ee3..d37c322f905 100644 --- a/usr.bin/ssh/cipher.c +++ b/usr.bin/ssh/cipher.c @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: cipher.c,v 1.53 2002/03/18 17:13:15 markus Exp $"); +RCSID("$OpenBSD: cipher.c,v 1.54 2002/03/19 10:49:35 markus Exp $"); #include "xmalloc.h" #include "log.h" @@ -73,17 +73,17 @@ struct Cipher { /*--*/ -u_int +u_int cipher_blocksize(Cipher *c) { return (c->block_size); } -u_int +u_int cipher_keylen(Cipher *c) { return (c->key_len); } -u_int +u_int cipher_get_number(Cipher *c) { return (c->number); @@ -504,7 +504,7 @@ evp_rijndael(void) return (&rijndal_cbc); } -/* +/* * Exports an IV from the CipherContext required to export the key * state back from the unprivileged child to the privileged parent * process. @@ -607,7 +607,7 @@ cipher_set_keyiv(CipherContext *cc, u_char *iv) memcpy(desc->k2.iv, iv + 8, 8); memcpy(desc->k3.iv, iv + 16, 8); return; - } + } default: fatal("%s: bad cipher %d", __FUNCTION__, c->number); } |