summaryrefslogtreecommitdiff
path: root/cesar/cp2/cco/action
diff options
context:
space:
mode:
authorlaranjeiro2008-08-28 08:13:20 +0000
committerlaranjeiro2008-08-28 08:13:20 +0000
commitee76fd937ad61e34f2943d2e7b22874f9db23cc6 (patch)
tree7266eb024d3c060eed6a6f5462547d78330ff66a /cesar/cp2/cco/action
parentf388788c731891ba8ee5086484983d9f47aa32a9 (diff)
cesar: Replace bitstream bad use by the correct use. Closes #97
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@2779 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/cp2/cco/action')
-rw-r--r--cesar/cp2/cco/action/test/src/action-test.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cesar/cp2/cco/action/test/src/action-test.c b/cesar/cp2/cco/action/test/src/action-test.c
index d68d76ae8e..900953d5fb 100644
--- a/cesar/cp2/cco/action/test/src/action-test.c
+++ b/cesar/cp2/cco/action/test/src/action-test.c
@@ -841,8 +841,7 @@ cp_msg_cm_get_key_req_receive (cp_t *ctx, cp_mme_rx_t *mme,
else
offset = 37;
- bitstream_memcpy (mme->p_mme + offset, &data->hash_key, mme->length -
- offset);
+ memcpy (mme->p_mme + offset, &data->hash_key, mme->length - offset);
return true;
}