rename nfc_connect() function to nfc_open().

This commit is contained in:
Audrey Diacre 2012-01-17 15:21:56 +00:00
parent 9eb37b3eee
commit 324af418db
36 changed files with 117 additions and 117 deletions

View file

@ -29,8 +29,8 @@ cut_setup (void)
cut_omit ("At least two NFC devices must be plugged-in to run this test");
}
second_device = nfc_connect (connstrings[0]);
first_device = nfc_connect (connstrings[1]);
second_device = nfc_open (connstrings[0]);
first_device = nfc_open (connstrings[1]);
signal (SIGINT, abort_test_by_keypress);
}