diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-08-27 23:22:09 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-08-27 23:29:13 +0200 |
commit | f897c97de0b28cc2e48bba1bb9fc986fe4659819 (patch) | |
tree | 455165542c2bd490affb4169d83965df1119a1d0 /src/irmd/api_table.h | |
parent | 7fd43a33c5964fcf0f8de2efc9dbf27f8db25fc4 (diff) | |
download | ouroboros-f897c97de0b28cc2e48bba1bb9fc986fe4659819.tar.gz ouroboros-f897c97de0b28cc2e48bba1bb9fc986fe4659819.zip |
irmd: Add state checks to api_entry
Prevents double destruction.
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 0758fdb8..8741a86b 100644 --- a/src/irmd/api_table.h +++ b/src/irmd/api_table.h @@ -41,7 +41,7 @@ struct api_entry { pid_t api; char * apn; /* application process instantiated */ char * daf_name; /* DAF this AP-I belongs to */ - struct list_head names; /* names for which this api accepts flows */ + struct list_head names; /* names for which api accepts flows */ struct reg_entry * re; /* reg_entry for which a flow arrived */ |