summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/agentx.c8
-rw-r--r--lib/smux.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/agentx.c b/lib/agentx.c
index 6c2923fcf8..bdf0d97169 100644
--- a/lib/agentx.c
+++ b/lib/agentx.c
@@ -38,7 +38,7 @@ XREF_SETUP();
DEFINE_HOOK(agentx_enabled, (), ());
-static int agentx_enabled = 0;
+static bool agentx_enabled = false;
static struct thread_master *agentx_tm;
static struct thread *timeout_thr = NULL;
@@ -226,7 +226,7 @@ DEFUN (agentx_enable,
init_snmp(FRR_SMUX_NAME);
events = list_new();
agentx_events_update();
- agentx_enabled = 1;
+ agentx_enabled = true;
hook_call(agentx_enabled);
}
@@ -245,7 +245,7 @@ DEFUN (no_agentx,
return CMD_WARNING_CONFIG_FAILED;
}
-int smux_enabled(void)
+bool smux_enabled(void)
{
return agentx_enabled;
}
@@ -272,7 +272,7 @@ void smux_agentx_enable(void)
init_snmp(FRR_SMUX_NAME);
events = list_new();
agentx_events_update();
- agentx_enabled = 1;
+ agentx_enabled = true;
}
}
diff --git a/lib/smux.h b/lib/smux.h
index 48c3374236..27f03b685f 100644
--- a/lib/smux.h
+++ b/lib/smux.h
@@ -109,7 +109,7 @@ struct index_oid {
#define SNMP_IP6ADDRESS(V) (*var_len = sizeof(struct in6_addr), (uint8_t *)&V)
-extern int smux_enabled(void);
+extern bool smux_enabled(void);
extern void smux_init(struct thread_master *tm);
extern void smux_agentx_enable(void);