Skip to content

Commit 26d56f4

Browse files
committed
usb: fix u2f build
Just use qemu_open_old() for a quick fix, switch to better error handling left for another day. Fixes: 448058a ("util: rename qemu_open() to qemu_open_old()") Cc: César Belley <[email protected]> Signed-off-by: Gerd Hoffmann <[email protected]> Reviewed-by: Daniel P. Berrangé <[email protected]> Message-id: [email protected]
1 parent 053a417 commit 26d56f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hw/usb/u2f-emulated.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ static ssize_t u2f_emulated_read(const char *path, char *buffer,
200200
int fd;
201201
ssize_t ret;
202202

203-
fd = qemu_open(path, O_RDONLY);
203+
fd = qemu_open_old(path, O_RDONLY);
204204
if (fd < 0) {
205205
return -1;
206206
}
@@ -217,7 +217,7 @@ static bool u2f_emulated_setup_counter(const char *path,
217217
int fd, ret;
218218
FILE *fp;
219219

220-
fd = qemu_open(path, O_RDWR);
220+
fd = qemu_open_old(path, O_RDWR);
221221
if (fd < 0) {
222222
return false;
223223
}

0 commit comments

Comments
 (0)