19 lines
597 B
Plaintext
19 lines
597 B
Plaintext
$OpenBSD: patch-rf2500_c,v 1.6 2011/09/06 20:36:24 jasper Exp $
|
|
|
|
From 7a0a30f62665ba85fa6e74ec3d9541bcafec34ad Mon Sep 17 00:00:00 2001
|
|
From: Daniel Beer <dlbeer@gmail.com>
|
|
Date: Wed, 7 Sep 2011 08:18:00 +1200
|
|
Subject: [PATCH] usb_bulk_read: may return 0 on timeout.
|
|
|
|
--- rf2500.c.orig Wed Aug 24 06:24:16 2011
|
|
+++ rf2500.c Tue Sep 6 22:35:25 2011
|
|
@@ -231,7 +231,7 @@ transport_t rf2500_open(const char *devpath, const cha
|
|
#ifndef __APPLE__
|
|
while (usb_bulk_read(tr->handle, USB_FET_IN_EP,
|
|
buf, sizeof(buf),
|
|
- 100) >= 0);
|
|
+ 100) > 0);
|
|
#endif
|
|
|
|
return (transport_t)tr;
|