diff options
author | Martin Mares <mj@ucw.cz> | 1998-05-26 23:37:37 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-05-26 23:37:37 +0200 |
commit | ed68a5c6a4da7050995934adb07612dea1cf6644 (patch) | |
tree | 2ab0c69f2555731bca5b851cd928c2a1de0183e1 /nest | |
parent | d5417b379f05541418fb4f1ac87100ba8106b0c6 (diff) | |
download | bird-ed68a5c6a4da7050995934adb07612dea1cf6644.tar bird-ed68a5c6a4da7050995934adb07612dea1cf6644.zip |
Resource pools are now named.
Diffstat (limited to 'nest')
-rw-r--r-- | nest/rt-attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-attr.c b/nest/rt-attr.c index a5ee77c..e667625 100644 --- a/nest/rt-attr.c +++ b/nest/rt-attr.c @@ -138,6 +138,6 @@ rta_dump_all(void) void rta_init(void) { - rta_pool = rp_new(&root_pool); + rta_pool = rp_new(&root_pool, "Attributes"); rta_slab = sl_new(rta_pool, sizeof(rta)); } |