summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2016-09-25 21:33:05 +0000
committerjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2016-09-25 21:33:05 +0000
commit9b8df39bee7708b2239a4b3f7f8deea0c259ecf4 (patch)
tree8b7c3295dd67f3c95e6797a3ff01b5fd31a7eac7
parenteb90170613bec4856332c0e5e6113acfe4e7c17f (diff)
downloadneon-9b8df39bee7708b2239a4b3f7f8deea0c259ecf4.tar.gz
* src/ne_openssl.c (ne_md5_create_ctx): Remove debugging code.
git-svn-id: http://svn.webdav.org/repos/projects/neon/trunk@1972 61a7d7f5-40b7-0310-9c16-bb0ea8cb1845
-rw-r--r--src/ne_openssl.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ne_openssl.c b/src/ne_openssl.c
index 41fdcae..8f530e0 100644
--- a/src/ne_openssl.c
+++ b/src/ne_openssl.c
@@ -1284,9 +1284,6 @@ static int init_md5_ctx(struct ne_md5_ctx *ctx)
struct ne_md5_ctx *ne_md5_create_ctx(void)
{
-#if 1
- return NULL;
-#else
struct ne_md5_ctx *ctx = ne_malloc(sizeof *ctx);
if (init_md5_ctx(ctx)) {
@@ -1295,7 +1292,6 @@ struct ne_md5_ctx *ne_md5_create_ctx(void)
}
return ctx;
-#endif
}
void ne_md5_process_block(const void *buffer, size_t len,