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.h | |
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.h')
-rw-r--r-- | src/irmd/api_table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irmd/api_table.h b/src/irmd/api_table.h index f9c4d0aa..1bb73df7 100644 --- a/src/irmd/api_table.h +++ b/src/irmd/api_table.h @@ -67,7 +67,7 @@ int api_entry_add_name(struct api_entry * e, char * name); void api_entry_del_name(struct api_entry * e, - char * name); + const char * name); int api_table_add(struct list_head * api_table, struct api_entry * e); |