|
@@ -1543,7 +1543,7 @@ u32 rtw_aes_encrypt(struct adapter *padapter, u8 *pxmitframe)
|
|
|
pframe = ((struct xmit_frame *)pxmitframe)->buf_addr + hw_hdr_offset;
|
|
|
|
|
|
/* 4 start to encrypt each fragment */
|
|
|
- if ((pattrib->encrypt == _AES_)) {
|
|
|
+ if (pattrib->encrypt == _AES_) {
|
|
|
RT_TRACE(_module_rtl871x_security_c_, _drv_err_, ("rtw_aes_encrypt: stainfo!= NULL!!!\n"));
|
|
|
|
|
|
if (IS_MCAST(pattrib->ra))
|
|
@@ -1866,8 +1866,7 @@ u32 rtw_aes_decrypt(struct adapter *padapter, u8 *precvframe)
|
|
|
|
|
|
pframe = (unsigned char *)((union recv_frame *)precvframe)->u.hdr.rx_data;
|
|
|
/* 4 start to encrypt each fragment */
|
|
|
- if ((prxattrib->encrypt == _AES_)) {
|
|
|
-
|
|
|
+ if (prxattrib->encrypt == _AES_) {
|
|
|
stainfo = rtw_get_stainfo(&padapter->stapriv, &prxattrib->ta[0]);
|
|
|
if (stainfo != NULL) {
|
|
|
RT_TRACE(_module_rtl871x_security_c_, _drv_err_, ("rtw_aes_decrypt: stainfo!= NULL!!!\n"));
|