aboutsummaryrefslogtreecommitdiff
path: root/sys/netatm/uni/sscop_upper.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netatm/uni/sscop_upper.c')
-rw-r--r--sys/netatm/uni/sscop_upper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netatm/uni/sscop_upper.c b/sys/netatm/uni/sscop_upper.c
index 8d68903d058e..d0d1d035cadb 100644
--- a/sys/netatm/uni/sscop_upper.c
+++ b/sys/netatm/uni/sscop_upper.c
@@ -351,7 +351,7 @@ sscop_pdu_receive(m, sop, typep)
/*
* Trailer not aligned in buffer, use local memory
*/
- KM_COPY(cp, (caddr_t)&sscop_trailer, tlen);
+ bcopy(cp, (caddr_t)&sscop_trailer, tlen);
cp = (caddr_t)&sscop_trailer;
}
} else {
@@ -370,11 +370,11 @@ sscop_pdu_receive(m, sop, typep)
goto badpdu;
KB_DATASTART(ml, cp1, caddr_t);
- KM_COPY(cp1, cp + off, KB_LEN(ml));
+ bcopy(cp1, cp + off, KB_LEN(ml));
KB_LEN(ml) = 0;
KB_TAILADJ(mn, -off);
KB_DATAEND(mn, cp1, caddr_t);
- KM_COPY(cp1, cp, off);
+ bcopy(cp1, cp, off);
}
/*