diff options
Diffstat (limited to 'sys/netatm/atm_cm.c')
-rw-r--r-- | sys/netatm/atm_cm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netatm/atm_cm.c b/sys/netatm/atm_cm.c index d83bf9c..f509f38 100644 --- a/sys/netatm/atm_cm.c +++ b/sys/netatm/atm_cm.c @@ -709,7 +709,7 @@ atm_cm_listen(epp, token, ap, copp) /* * Get an attribute block and save listening attributes */ - cop->co_lattr = uma_zalloc(atm_attributes_zone, 0); + cop->co_lattr = (Atm_attributes *)atm_allocate(&atm_attributes_pool); if (cop->co_lattr == NULL) { err = ENOMEM; goto done; |