summaryrefslogtreecommitdiff
path: root/src/rfid_layer2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rfid_layer2.c')
-rw-r--r--src/rfid_layer2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rfid_layer2.c b/src/rfid_layer2.c
index 8d1544a..eef0560 100644
--- a/src/rfid_layer2.c
+++ b/src/rfid_layer2.c
@@ -49,16 +49,16 @@ rfid_layer2_open(struct rfid_layer2_handle *ph)
}
int
-rfid_layer2_transcieve(struct rfid_layer2_handle *ph,
+rfid_layer2_transceive(struct rfid_layer2_handle *ph,
enum rfid_frametype frametype,
const unsigned char *tx_buf, unsigned int len,
unsigned char *rx_buf, unsigned int *rx_len,
u_int64_t timeout, unsigned int flags)
{
- if (!ph->l2->fn.transcieve)
+ if (!ph->l2->fn.transceive)
return -EIO;
- return ph->l2->fn.transcieve(ph, frametype, tx_buf, len, rx_buf,
+ return ph->l2->fn.transceive(ph, frametype, tx_buf, len, rx_buf,
rx_len, timeout, flags);
}
personal git repositories of Harald Welte. Your mileage may vary