aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/conf
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-01-27 17:44:12 -0500
committerRich Salz <rsalz@openssl.org>2015-01-27 17:44:12 -0500
commit1a5adcfb5edfe23908b350f8757df405b0f5f71f (patch)
tree1fd7eeff1276c7e1847c2bc10aba1ea432793e87 /crypto/conf
parent63c574f6a639cfa3f53476080054526e6bfa3bc9 (diff)
downloadopenssl-1a5adcfb5edfe23908b350f8757df405b0f5f71f.tar.gz
"#if 0" removal: header files
Remove all "#if 0" blocks from header files. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/conf')
-rw-r--r--crypto/conf/conf.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/crypto/conf/conf.h b/crypto/conf/conf.h
index 54edfdd97e..06c76018fd 100644
--- a/crypto/conf/conf.h
+++ b/crypto/conf/conf.h
@@ -153,10 +153,6 @@ struct conf_st {
CONF *NCONF_new(CONF_METHOD *meth);
CONF_METHOD *NCONF_default(void);
CONF_METHOD *NCONF_WIN32(void);
-# if 0 /* Just to give you an idea of what I have in
- * mind */
-CONF_METHOD *NCONF_XML(void);
-# endif
void NCONF_free(CONF *conf);
void NCONF_free_data(CONF *conf);
@@ -173,12 +169,7 @@ int NCONF_get_number_e(const CONF *conf, const char *group, const char *name,
int NCONF_dump_fp(const CONF *conf, FILE *out);
int NCONF_dump_bio(const CONF *conf, BIO *out);
-# if 0 /* The following function has no error
- * checking, and should therefore be avoided */
-long NCONF_get_number(CONF *conf, char *group, char *name);
-# else
-# define NCONF_get_number(c,g,n,r) NCONF_get_number_e(c,g,n,r)
-# endif
+#define NCONF_get_number(c,g,n,r) NCONF_get_number_e(c,g,n,r)
/* Module functions */