summaryrefslogtreecommitdiffstats
path: root/demos/bio/sconnect.c
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2017-07-12 14:18:00 +1000
committerPauli <paul.dale@oracle.com>2017-07-13 07:34:40 +1000
commit084f9a7046c9a4d352278e3639290316c8c30f38 (patch)
treeeaa820a862b659432590ed07c5651cb61daaceda /demos/bio/sconnect.c
parent6e2e6ed4faefc7ac57fd053cfac227352632fb81 (diff)
Demo style fixes and modernisation.
Address some style issues in the demos and modernise the C. Fix the exit/return from main handling. Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3914)
Diffstat (limited to 'demos/bio/sconnect.c')
-rw-r--r--demos/bio/sconnect.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/demos/bio/sconnect.c b/demos/bio/sconnect.c
index 664a1e038c..db71f29afe 100644
--- a/demos/bio/sconnect.c
+++ b/demos/bio/sconnect.c
@@ -1,5 +1,5 @@
/*
- * Copyright 1998-2016 The OpenSSL Project Authors. All Rights Reserved.
+ * Copyright 1998-2017 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@@ -18,17 +18,14 @@
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
+#include <errno.h>
#include <openssl/err.h>
#include <openssl/ssl.h>
#define HOSTPORT "localhost:4433"
#define CAFILE "root.pem"
-extern int errno;
-
-int main(argc, argv)
-int argc;
-char *argv[];
+int main(int argc, char *argv[])
{
const char *hostport = HOSTPORT;
const char *CAfile = CAFILE;
@@ -39,7 +36,7 @@ char *argv[];
SSL_CTX *ssl_ctx = NULL;
SSL *ssl;
BIO *ssl_bio;
- int i, len, off, ret = 1;
+ int i, len, off, ret = EXIT_FAILURE;
if (argc > 1)
hostport = argv[1];
@@ -115,17 +112,18 @@ char *argv[];
fwrite(buf, 1, i, stdout);
}
- ret = 1;
+ ret = EXIT_SUCCESS;
goto done;
err:
if (ERR_peek_error() == 0) { /* system call error */
fprintf(stderr, "errno=%d ", errno);
perror("error");
- } else
+ } else {
ERR_print_errors_fp(stderr);
+ }
done:
BIO_free_all(out);
SSL_CTX_free(ssl_ctx);
- return (ret == 1);
+ return ret;
}