summaryrefslogtreecommitdiffstats
path: root/rfcomm
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2007-02-13 20:41:55 +0000
committerMarcel Holtmann <marcel@holtmann.org>2007-02-13 20:41:55 +0000
commit4539df01941b46f707bd8ccf9d54ff6f288cae70 (patch)
treee9cf0e8e57f12c0548e921d26949bff55404205a /rfcomm
parent98329bfce1a1ce33cf2f46007196ecc63441465a (diff)
Wait 30 * 100ms for udev to create the device node
Diffstat (limited to 'rfcomm')
-rw-r--r--rfcomm/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rfcomm/main.c b/rfcomm/main.c
index 304c7134..b66bcdce 100644
--- a/rfcomm/main.c
+++ b/rfcomm/main.c
@@ -397,7 +397,7 @@ static void cmd_connect(int ctl, int dev, bdaddr_t *bdaddr, int argc, char **arg
if ((fd = open(devname, O_RDONLY | O_NOCTTY)) < 0) {
if (try--) {
snprintf(devname, MAXPATHLEN - 1, "/dev/rfcomm%d", dev);
- usleep(100);
+ usleep(100 * 1000);
continue;
}
perror("Can't open RFCOMM device");