diff options
author | deraadt <> | 2014-10-08 04:00:55 +0000 |
---|---|---|
committer | deraadt <> | 2014-10-08 04:00:55 +0000 |
commit | 410c1c8e32b715e202cc3c3d4bea84a41671f9c9 (patch) | |
tree | 8ff89ebef8aef35e0d3488ac1951347d500da729 | |
parent | c2cca954d749dce6972a5557d913706593a02240 (diff) | |
download | openbsd-410c1c8e32b715e202cc3c3d4bea84a41671f9c9.tar.gz openbsd-410c1c8e32b715e202cc3c3d4bea84a41671f9c9.tar.bz2 openbsd-410c1c8e32b715e202cc3c3d4bea84a41671f9c9.zip |
fix an indentation that makes me upset
-rw-r--r-- | src/usr.bin/openssl/pkeyutl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/pkeyutl.c b/src/usr.bin/openssl/pkeyutl.c index f1658dd6aa..0d1284988f 100644 --- a/src/usr.bin/openssl/pkeyutl.c +++ b/src/usr.bin/openssl/pkeyutl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: pkeyutl.c,v 1.3 2014/08/28 14:25:48 jsing Exp $ */ | 1 | /* $OpenBSD: pkeyutl.c,v 1.4 2014/10/08 04:00:55 deraadt Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2006. | 3 | * project 2006. |
4 | */ | 4 | */ |
@@ -285,7 +285,7 @@ pkeyutl_main(int argc, char **argv) | |||
285 | if (rv >= 0) | 285 | if (rv >= 0) |
286 | goto end; | 286 | goto end; |
287 | } else { | 287 | } else { |
288 | rv = do_keyop(ctx, pkey_op, NULL, (size_t *) & buf_outlen, | 288 | rv = do_keyop(ctx, pkey_op, NULL, (size_t *)&buf_outlen, |
289 | buf_in, (size_t) buf_inlen); | 289 | buf_in, (size_t) buf_inlen); |
290 | if (rv > 0) { | 290 | if (rv > 0) { |
291 | buf_out = malloc(buf_outlen); | 291 | buf_out = malloc(buf_outlen); |