From 1bc5dd3efc7495b72f2780b4ef8d502bd899c783 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Mon, 16 Oct 2000 13:08:16 +0000 Subject: [PATCH] Always return a value. Submitted by: Reviewed by: PR: --- crypto/conf/conf_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/conf/conf_lib.c b/crypto/conf/conf_lib.c index 6a650f18e7..51bd0db655 100644 --- a/crypto/conf/conf_lib.c +++ b/crypto/conf/conf_lib.c @@ -322,7 +322,7 @@ char *NCONF_get_string(CONF *conf,char *group,char *name) CONF_R_NO_CONF_OR_ENVIRONMENT_VARIABLE); return NULL; } - + return NULL; } long NCONF_get_number(CONF *conf,char *group,char *name)