diff options
| author | Nick Hibma <n_hibma@FreeBSD.org> | 2000-01-10 22:35:33 +0000 |
|---|---|---|
| committer | Nick Hibma <n_hibma@FreeBSD.org> | 2000-01-10 22:35:33 +0000 |
| commit | 38e144ec2b8a091051b0bf36d8cee590db7c25ed (patch) | |
| tree | db26b14def2370451d486c02361116938b6a8303 | |
| parent | c37cedc57d246ed4aea40be550daeccd86aa10d9 (diff) | |
Notes
| -rw-r--r-- | usr.sbin/usbd/usbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/usbd/usbd.c b/usr.sbin/usbd/usbd.c index b5fda980effc..09190c9154f2 100644 --- a/usr.sbin/usbd/usbd.c +++ b/usr.sbin/usbd/usbd.c @@ -942,7 +942,7 @@ main(int argc, char **argv) if (fds[ndevs] > maxfd) maxfd = fds[ndevs]; ndevs++; - } else if (errno != ENXIO) { + } else if (errno != ENXIO && errno != ENOENT) { /* there was an error, on a device that does * exist (device is configured) */ |
