diff options
author | dimitri staessens <dimitri.staessens@ugent.be> | 2017-05-09 14:31:15 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-05-09 14:43:59 +0200 |
commit | 19718b97ba13390ff5f2b7453d0297e936db5653 (patch) | |
tree | 663937818ceeef46ecdf34829bea4902f34ef5d7 /src/irmd/api_table.c | |
parent | 9b8b1412c3c4a80df713abd02f172d87397adaf0 (diff) | |
download | ouroboros-19718b97ba13390ff5f2b7453d0297e936db5653.tar.gz ouroboros-19718b97ba13390ff5f2b7453d0297e936db5653.zip |
irmd: Fix unbinding AP and AP-Is from a name
APs and AP-Is were not removed from the registry entry for that name.
Reported by: loic.vervaeke@ugent.be
Tested by: loic.vervaeke@ugent.be
Diffstat (limited to 'src/irmd/api_table.c')
-rw-r--r-- | src/irmd/api_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irmd/api_table.c b/src/irmd/api_table.c index 268f8231..580191da 100644 --- a/src/irmd/api_table.c +++ b/src/irmd/api_table.c @@ -142,7 +142,7 @@ int api_entry_add_name(struct api_entry * e, } void api_entry_del_name(struct api_entry * e, - char * name) + const char * name) { struct list_head * p = NULL; struct list_head * h = NULL; |