diff options
Diffstat (limited to 'tests/gsm0808/gsm0808_test.c')
-rw-r--r-- | tests/gsm0808/gsm0808_test.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/gsm0808/gsm0808_test.c b/tests/gsm0808/gsm0808_test.c index 7e5e97b5..1ce6ef9a 100644 --- a/tests/gsm0808/gsm0808_test.c +++ b/tests/gsm0808/gsm0808_test.c @@ -108,8 +108,7 @@ static void test_create_cipher_complete() msgb_free(msg); /* with l3 data but short */ - l3->len -= 1; - l3->tail -= 1; + msgb_trim(l3, l3->len - 1); msg = gsm0808_create_cipher_complete(l3, 4); VERIFY(msg, res2, ARRAY_SIZE(res2)); msgb_free(msg); |