summaryrefslogtreecommitdiff
path: root/src/irmd
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2016-08-04 16:59:31 +0200
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2016-08-04 17:24:40 +0200
commit2164c4ce67acde4282a579937a784647b66f4d72 (patch)
tree6d003ae03c321840d81a07ce0e10d906395a68fc /src/irmd
parentdd808dd6cd7eb4690bfc009eb8dd8150944f75b6 (diff)
downloadouroboros-2164c4ce67acde4282a579937a784647b66f4d72.tar.gz
ouroboros-2164c4ce67acde4282a579937a784647b66f4d72.zip
tools: oping: Fix division by zero
When killing the oping client before it sent an SDU, some bad operations were being performed.
Diffstat (limited to 'src/irmd')
-rw-r--r--src/irmd/main.c8
-rw-r--r--src/irmd/registry.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/irmd/main.c b/src/irmd/main.c
index f2a6733d..0c1cd25d 100644
--- a/src/irmd/main.c
+++ b/src/irmd/main.c
@@ -657,10 +657,10 @@ static int ap_reg(char * name,
LOG_ERR("Could not register %s in DIF %s.",
name, e->dif_name);
} else {
- if(registry_add_name_to_dif(&irmd->registry,
- name,
- e->dif_name,
- e->type) < 0)
+ if (registry_add_name_to_dif(&irmd->registry,
+ name,
+ e->dif_name,
+ e->type) < 0)
LOG_WARN("Registered unbound name %s. "
"Registry may be inconsistent",
name);
diff --git a/src/irmd/registry.c b/src/irmd/registry.c
index a1d1238d..fc7213ab 100644
--- a/src/irmd/registry.c
+++ b/src/irmd/registry.c
@@ -210,7 +210,7 @@ static struct reg_entry * reg_entry_create()
}
static struct reg_entry * reg_entry_init(struct reg_entry * e,
- char * name)
+ char * name)
{
if (e == NULL || name == NULL)
return NULL;