summaryrefslogtreecommitdiffstats
path: root/sys/netatm/uni/unisig_vc_state.c
diff options
context:
space:
mode:
authorarr <arr@FreeBSD.org>2002-04-19 17:45:22 +0000
committerarr <arr@FreeBSD.org>2002-04-19 17:45:22 +0000
commit122c24db48374dee47cf7a553f344ff0a6aee1e9 (patch)
treec3e1adf80f94ef52147a4d2fc164dab32797d93d /sys/netatm/uni/unisig_vc_state.c
parent1482903ceafd6c259928760686a1a308932b4d7c (diff)
downloadFreeBSD-src-122c24db48374dee47cf7a553f344ff0a6aee1e9.zip
FreeBSD-src-122c24db48374dee47cf7a553f344ff0a6aee1e9.tar.gz
- Change KM_ macro calls to the appropriate function call.
- Nuke KM_ macros from port.h This is a leadin step towards cleaning up this code as I wait for some ATM cards and a ATM switch to arrive.
Diffstat (limited to 'sys/netatm/uni/unisig_vc_state.c')
-rw-r--r--sys/netatm/uni/unisig_vc_state.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netatm/uni/unisig_vc_state.c b/sys/netatm/uni/unisig_vc_state.c
index b35eb47..fa9c3dd 100644
--- a/sys/netatm/uni/unisig_vc_state.c
+++ b/sys/netatm/uni/unisig_vc_state.c
@@ -571,7 +571,7 @@ unisig_vc_act05(usp, uvp, msg)
*/
cause_ie->ie_caus_loc = UNI_IE_CAUS_LOC_USER;
cause_ie->ie_caus_cause = UNI_IE_CAUS_TIMER;
- KM_COPY("310", cause_ie->ie_caus_diagnostic, 3);
+ bcopy("310", cause_ie->ie_caus_diagnostic, 3);
/*
* Send the RELEASE message.
@@ -981,7 +981,7 @@ unisig_vc_act08(usp, uvp, msg)
* Copy the connection attributes from the SETUP message
* to an attribute block
*/
- KM_ZERO(&attr, sizeof(attr));
+ bzero(&attr, sizeof(attr));
attr.nif = nip;
attr.aal.tag = T_ATM_ABSENT;
attr.traffic.tag = T_ATM_ABSENT;
OpenPOWER on IntegriCloud