summaryrefslogtreecommitdiffstats
path: root/apps/srp.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-05-15 09:42:08 +0100
committerMatt Caswell <matt@openssl.org>2015-05-22 09:38:37 +0100
commita7f82a1ab2be0b9c27944430ac48ad63cc0d5e79 (patch)
tree5d6c31fd073c0e141f09904736122e7ea6c4b1d8 /apps/srp.c
parent6b41b3f5eacc6b1bb851c9dce22d6e893f32ea7d (diff)
Fix various OPENSSL_NO_* options
This fixes compilation with various OPENSSL_NO_* options that got broken during the big apps cleanup. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps/srp.c')
-rw-r--r--apps/srp.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/apps/srp.c b/apps/srp.c
index 6c50a6e6d7..161f2b89ef 100644
--- a/apps/srp.c
+++ b/apps/srp.c
@@ -58,17 +58,16 @@
#include <openssl/opensslconf.h>
#ifndef OPENSSL_NO_SRP
-# include <stdio.h>
-# include <stdlib.h>
-# include <string.h>
-# include <openssl/conf.h>
-# include <openssl/bio.h>
-# include <openssl/err.h>
-# include <openssl/txt_db.h>
-# include <openssl/buffer.h>
-# include <openssl/srp.h>
-
-# include "apps.h"
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <openssl/conf.h>
+#include <openssl/bio.h>
+#include <openssl/err.h>
+#include <openssl/txt_db.h>
+#include <openssl/buffer.h>
+#include <openssl/srp.h>
+#include "apps.h"
# define BASE_SECTION "srp"
# define CONFIG_FILE "openssl.cnf"