summaryrefslogtreecommitdiffstats
path: root/crypto/o_dir_test.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-22 03:29:12 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:31:38 +0000
commitae5c8664e587f2445c8e4eb436cffbb64af4f6b8 (patch)
tree6d5b2cbee6396484f83126f8c7e7a36b9777a652 /crypto/o_dir_test.c
parentaae3233e1e08e9f11742f8f351af5c98cd8add16 (diff)
Run util/openssl-format-source -v -c .
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/o_dir_test.c')
-rw-r--r--crypto/o_dir_test.c34
1 files changed, 16 insertions, 18 deletions
diff --git a/crypto/o_dir_test.c b/crypto/o_dir_test.c
index 3d75ecb005..7cdbbbc403 100644
--- a/crypto/o_dir_test.c
+++ b/crypto/o_dir_test.c
@@ -1,5 +1,6 @@
/* crypto/o_dir.h -*- mode:C; c-file-style: "eay" -*- */
-/* Copied from Richard Levitte's (richard@levitte.org) LP library. All
+/*
+ * Copied from Richard Levitte's (richard@levitte.org) LP library. All
* symbol names have been changed, with permission from the author.
*/
@@ -38,33 +39,30 @@
#include "o_dir.h"
#if defined OPENSSL_SYS_UNIX || defined OPENSSL_SYS_WIN32 || defined OPENSSL_SYS_WINCE
-#define CURRDIR "."
+# define CURRDIR "."
#elif defined OPENSSL_SYS_VMS
-#define CURRDIR "SYS$DISK:[]"
+# define CURRDIR "SYS$DISK:[]"
#else
-#error "No supported platform defined!"
+# error "No supported platform defined!"
#endif
int main()
{
- OPENSSL_DIR_CTX *ctx = NULL;
- const char *result;
+ OPENSSL_DIR_CTX *ctx = NULL;
+ const char *result;
- while((result = OPENSSL_DIR_read(&ctx, CURRDIR)) != NULL)
- {
- printf("%s\n", result);
+ while ((result = OPENSSL_DIR_read(&ctx, CURRDIR)) != NULL) {
+ printf("%s\n", result);
}
- if (errno)
- {
- perror("test_dir");
- exit(1);
+ if (errno) {
+ perror("test_dir");
+ exit(1);
}
- if (!OPENSSL_DIR_end(&ctx))
- {
- perror("test_dir");
- exit(2);
+ if (!OPENSSL_DIR_end(&ctx)) {
+ perror("test_dir");
+ exit(2);
}
- exit(0);
+ exit(0);
}