Fix intendation

This commit is contained in:
Bodo Möller
2008-09-15 20:39:32 +00:00
parent 4ea574fdf3
commit aecf1c1f96

View File

@@ -98,7 +98,7 @@ static int int_engine_configure(char *name, char *value, const CONF *cnf)
CONF_VALUE *ecmd; CONF_VALUE *ecmd;
char *ctrlname, *ctrlvalue; char *ctrlname, *ctrlvalue;
ENGINE *e = NULL; ENGINE *e = NULL;
int soft = 0; int soft = 0;
name = skip_dot(name); name = skip_dot(name);
#ifdef ENGINE_CONF_DEBUG #ifdef ENGINE_CONF_DEBUG
@@ -127,8 +127,8 @@ static int int_engine_configure(char *name, char *value, const CONF *cnf)
/* Override engine name to use */ /* Override engine name to use */
if (!strcmp(ctrlname, "engine_id")) if (!strcmp(ctrlname, "engine_id"))
name = ctrlvalue; name = ctrlvalue;
else if (!strcmp(ctrlname, "soft_load")) else if (!strcmp(ctrlname, "soft_load"))
soft = 1; soft = 1;
/* Load a dynamic ENGINE */ /* Load a dynamic ENGINE */
else if (!strcmp(ctrlname, "dynamic_path")) else if (!strcmp(ctrlname, "dynamic_path"))
{ {
@@ -151,11 +151,11 @@ static int int_engine_configure(char *name, char *value, const CONF *cnf)
if (!e) if (!e)
{ {
e = ENGINE_by_id(name); e = ENGINE_by_id(name);
if (!e && soft) if (!e && soft)
{ {
ERR_clear_error(); ERR_clear_error();
return 1; return 1;
} }
if (!e) if (!e)
return 0; return 0;
} }