summaryrefslogtreecommitdiff
path: root/src/rfid_layer2.c
diff options
context:
space:
mode:
authorlaforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede>2006-06-13 09:55:09 +0000
committerlaforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede>2006-06-13 09:55:09 +0000
commit2e5b78aa3beb31e5d9d83e693c59671faebfc932 (patch)
treec56580d518df09302ae432fb46d9f3e6cc882eb1 /src/rfid_layer2.c
parentaeb513680eccb0aa4062f63d7b5ae7725d83b848 (diff)
s/transcieve/transceive/g (Henryk Ploetz)
git-svn-id: https://svn.gnumonks.org/trunk/librfid@1817 e0336214-984f-0b4b-a45f-81c69e1f0ede
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