[sr-dev] git:master:15aaff16: core: cfg ctx - formatting for cfg reset

Daniel-Constantin Mierla miconda at gmail.com
Fri Jul 14 14:34:58 CEST 2017


Module: kamailio
Branch: master
Commit: 15aaff16dd0c6d290885cd39390813d183851f35
URL: https://github.com/kamailio/kamailio/commit/15aaff16dd0c6d290885cd39390813d183851f35

Author: Daniel-Constantin Mierla <miconda at gmail.com>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date: 2017-07-14T14:32:14+02:00

core: cfg ctx - formatting for cfg reset

---

Modified: src/core/cfg/cfg_ctx.c

---

Diff:  https://github.com/kamailio/kamailio/commit/15aaff16dd0c6d290885cd39390813d183851f35.diff
Patch: https://github.com/kamailio/kamailio/commit/15aaff16dd0c6d290885cd39390813d183851f35.patch

---

diff --git a/src/core/cfg/cfg_ctx.c b/src/core/cfg/cfg_ctx.c
index 4c07996950..02dd9145dd 100644
--- a/src/core/cfg/cfg_ctx.c
+++ b/src/core/cfg/cfg_ctx.c
@@ -1284,8 +1284,8 @@ int cfg_rollback(cfg_ctx_t *ctx)
  * -1 - error
  *  1 - variable exists, but it is not readable
  */
-int cfg_get_by_name(cfg_ctx_t *ctx, str *group_name, unsigned int *group_id, str *var_name,
-			void **val, unsigned int *val_type)
+int cfg_get_by_name(cfg_ctx_t *ctx, str *group_name, unsigned int *group_id,
+		str *var_name, void **val, unsigned int *val_type)
 {
 	cfg_group_t	*group;
 	cfg_mapping_t	*var;
@@ -1365,8 +1365,9 @@ int cfg_get_by_name(cfg_ctx_t *ctx, str *group_name, unsigned int *group_id, str
  * -1 - error
  *  1 - variable exists, but it is not readable
  */
-int cfg_get_default_value_by_name(cfg_ctx_t *ctx, str *group_name, unsigned int *group_id, str *var_name,
-                       void **val, unsigned int *val_type)
+int cfg_get_default_value_by_name(cfg_ctx_t *ctx, str *group_name,
+		unsigned int *group_id, str *var_name, void **val,
+		unsigned int *val_type)
 {
 	cfg_group_t	*group;
 	cfg_mapping_t	*var;
@@ -1384,11 +1385,11 @@ int cfg_get_default_value_by_name(cfg_ctx_t *ctx, str *group_name, unsigned int
 	}
 
 	/* look-up the group and the variable */
-	if (cfg_lookup_var(group_name, var_name, &group, &var))
+	if (cfg_lookup_var(group_name, var_name, &group, &var)) {
 		return -1;
-	else
-	{
-		if(var->def->type & CFG_READONLY)  /* if variables exist then prevents resetting the read-only ones */
+	} else {
+		/* if variables exist then prevents resetting the read-only ones */
+		if(var->def->type & CFG_READONLY)
 			return -1;
 	}
 
@@ -1399,7 +1400,8 @@ int cfg_get_default_value_by_name(cfg_ctx_t *ctx, str *group_name, unsigned int
 		return 1;
 	}
 
-	/* use the module's orig_handle to access the default registered value of the variable for any group*/
+	/* use the module's orig_handle to access the default registered value of
+	 * the variable for any group*/
 	p = (group->orig_handle) + var->offset;
 
 	switch (CFG_VAR_TYPE(var)) {




More information about the sr-dev mailing list