diff options
author | deraadt <> | 2014-07-18 18:01:26 +0000 |
---|---|---|
committer | deraadt <> | 2014-07-18 18:01:26 +0000 |
commit | 7e8a8e10eb33b800847c68f63d4a3c0fbac09cb9 (patch) | |
tree | d754b087813cbb64da4261149f1d1b72161e2a76 /src | |
parent | 478f6e51b49915eeedecbbbd252727eef84fb61c (diff) | |
download | openbsd-7e8a8e10eb33b800847c68f63d4a3c0fbac09cb9.tar.gz openbsd-7e8a8e10eb33b800847c68f63d4a3c0fbac09cb9.tar.bz2 openbsd-7e8a8e10eb33b800847c68f63d4a3c0fbac09cb9.zip |
missing newline
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/src/apps/openssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/src/apps/openssl.c b/src/lib/libssl/src/apps/openssl.c index 5ac41e2035..3852f937f6 100644 --- a/src/lib/libssl/src/apps/openssl.c +++ b/src/lib/libssl/src/apps/openssl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: openssl.c,v 1.42 2014/07/17 23:50:07 deraadt Exp $ */ | 1 | /* $OpenBSD: openssl.c,v 1.43 2014/07/18 18:01:26 deraadt Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -257,7 +257,7 @@ main(int argc, char **argv) | |||
257 | 257 | ||
258 | bio_err = BIO_new_fp(stderr, BIO_NOCLOSE); | 258 | bio_err = BIO_new_fp(stderr, BIO_NOCLOSE); |
259 | if (bio_err == NULL) { | 259 | if (bio_err == NULL) { |
260 | fprintf(stderr, "openssl: failed to initialise bio_err"); | 260 | fprintf(stderr, "openssl: failed to initialise bio_err\n"); |
261 | exit(1); | 261 | exit(1); |
262 | } | 262 | } |
263 | 263 | ||