[svn-commits] file: trunk r39512 - /trunk/res/res_snmp.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Fri Aug 11 06:42:49 MST 2006


Author: file
Date: Fri Aug 11 08:42:49 2006
New Revision: 39512

URL: http://svn.digium.com/view/asterisk?rev=39512&view=rev
Log:
Make res_snmp fit general coding style (issue #7192 reported by Mithraen)

Modified:
    trunk/res/res_snmp.c

Modified: trunk/res/res_snmp.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_snmp.c?rev=39512&r1=39511&r2=39512&view=diff
==============================================================================
--- trunk/res/res_snmp.c (original)
+++ trunk/res/res_snmp.c Fri Aug 11 08:42:49 2006
@@ -39,14 +39,14 @@
 
 static int load_config(void)
 {
-    struct ast_variable *var;
-    struct ast_config *cfg;
-    char *cat;
-	
+	struct ast_variable *var;
+	struct ast_config *cfg;
+	char *cat;
+
 	res_snmp_enabled = 0;
 	res_snmp_agentx_subagent = 1;
-    cfg = ast_config_load("res_snmp.conf");
-    if (cfg) {
+	cfg = ast_config_load("res_snmp.conf");
+	if (cfg) {
 		cat = ast_category_browse(cfg, NULL);
 		while (cat) {
 			var = ast_variable_browse(cfg, cat);
@@ -59,23 +59,20 @@
 						else if (ast_false(var->value))
 							res_snmp_agentx_subagent = 0;
 						else {
-							ast_log(LOG_ERROR, "Value '%s' does not evaluate to true or false.\n",
-									var->value);
+							ast_log(LOG_ERROR, "Value '%s' does not evaluate to true or false.\n", var->value);
 							ast_config_destroy(cfg);
 							return 1;
 						}
 					} else if (strcasecmp(var->name, "enabled") == 0) {
 						res_snmp_enabled = ast_true(var->value);
 					} else {
-						ast_log(LOG_ERROR, "Unrecognized variable '%s' in category '%s'\n",
-								var->name, cat);
+						ast_log(LOG_ERROR, "Unrecognized variable '%s' in category '%s'\n", var->name, cat);
 						ast_config_destroy(cfg);
 						return 1;
 					}
 					var = var->next;
 				}
-			}
-			else {
+			} else {
 				ast_log(LOG_ERROR, "Unrecognized category '%s'\n", cat);
 				ast_config_destroy(cfg);
 				return 1;
@@ -84,57 +81,57 @@
 			cat = ast_category_browse(cfg, cat);
 		}
 		ast_config_destroy(cfg);
-    }
+	}
 
-    return 0;
+	return 0;
 }
 
 static int load_module(void *mod)
 {
-    load_config();
+	load_config();
 
-    ast_verbose(VERBOSE_PREFIX_1 "Loading [Sub]Agent Module\n");
+	ast_verbose(VERBOSE_PREFIX_1 "Loading [Sub]Agent Module\n");
 
-    res_snmp_dont_stop = 1;
+	res_snmp_dont_stop = 1;
 	if (res_snmp_enabled)
-	    return ast_pthread_create(&thread, NULL, agent_thread, NULL);
+		return ast_pthread_create(&thread, NULL, agent_thread, NULL);
 	else
 		return 0;
 }
 
 static int unload_module(void *mod)
 {
-    ast_verbose(VERBOSE_PREFIX_1 "Unloading [Sub]Agent Module\n");
+	ast_verbose(VERBOSE_PREFIX_1 "Unloading [Sub]Agent Module\n");
 
-    res_snmp_dont_stop = 0;
-    return pthread_join(thread, NULL);
+	res_snmp_dont_stop = 0;
+	return pthread_join(thread, NULL);
 }
 
 static int reload(void *mod)
 {
-    ast_verbose(VERBOSE_PREFIX_1 "Reloading [Sub]Agent Module\n");
+	ast_verbose(VERBOSE_PREFIX_1 "Reloading [Sub]Agent Module\n");
 
-    res_snmp_dont_stop = 0;
+	res_snmp_dont_stop = 0;
 	if (thread != AST_PTHREADT_NULL)
-	    pthread_join(thread, NULL);
+		pthread_join(thread, NULL);
 	thread = AST_PTHREADT_NULL;
-    load_config();
+	load_config();
 
-    res_snmp_dont_stop = 1;
+	res_snmp_dont_stop = 1;
 	if (res_snmp_enabled)
-	    return ast_pthread_create(&thread, NULL, agent_thread, NULL);
+		return ast_pthread_create(&thread, NULL, agent_thread, NULL);
 	else
 		return 0;
 }
 
 static const char *key(void)
 {
-    return ASTERISK_GPL_KEY;
+	return ASTERISK_GPL_KEY;
 }
 
 static const char *description(void)
 {
-    return MODULE_DESCRIPTION;
+	return MODULE_DESCRIPTION;
 }
 
 STD_MOD(MOD_0, reload, NULL, NULL);



More information about the svn-commits mailing list