gprs_llc: fix misleading spacing in gprs_llc_rcvmsg()

Change-Id: I7ec97a7d9b37f0541887bc13e31f547613f8945e
This commit is contained in:
Vadim Yanitskiy 2022-08-26 05:38:24 +07:00
parent c63a8381e5
commit fb6cf3221e
1 changed files with 3 additions and 3 deletions

View File

@ -965,9 +965,9 @@ int gprs_llc_rcvmsg(struct msgb *msg, struct tlv_parsed *tv)
llhp.data);
if (rc < 0)
return rc;
llhp.fcs = *(llhp.data + llhp.data_len);
llhp.fcs |= *(llhp.data + llhp.data_len + 1) << 8;
llhp.fcs |= *(llhp.data + llhp.data_len + 2) << 16;
llhp.fcs = *(llhp.data + llhp.data_len);
llhp.fcs |= *(llhp.data + llhp.data_len + 1) << 8;
llhp.fcs |= *(llhp.data + llhp.data_len + 2) << 16;
} else {
LOGP(DLLC, LOGL_NOTICE, "encrypted frame for LLC that "
"has no KC/Algo! Dropping.\n");