Update nfc_initiator_transceive_bytes() vs. nfc_initiator_transceive_dep_bytes().

nfc_initiator_transceive_dep_bytes() was removed, and
nfc_initiator_transceive_bytes() is now configured to behave like the one or
the other of the original functions.  For details, see:
http://code.google.com/p/libnfc/source/detail?r=592
This commit is contained in:
Romain Tartiere 2010-09-03 16:13:46 +00:00
parent 70f2fe2685
commit 036d2956f4
3 changed files with 5 additions and 3 deletions

View file

@ -83,7 +83,7 @@
do { \
errno = 0; \
DEBUG_XFER (msg, __##msg##_n, "===> "); \
if (!(nfc_initiator_transceive_dep_bytes (tag->device, msg, __##msg##_n, res, &__##res##_n))) { \
if (!(nfc_initiator_transceive_bytes (tag->device, msg, __##msg##_n, res, &__##res##_n))) { \
nfc_perror (tag->device, __FUNCTION__); \
if (disconnect) \
tag->active = false; \