summaryrefslogtreecommitdiff
path: root/dynamite.c
diff options
context:
space:
mode:
Diffstat (limited to 'dynamite.c')
-rw-r--r--dynamite.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/dynamite.c b/dynamite.c
index eaa1dce..d3ed8b2 100644
--- a/dynamite.c
+++ b/dynamite.c
@@ -30,7 +30,9 @@ public:
new cDynamicDevice;
}
isyslog("dynamite: grab dvb device %d/%d", Adapter, Frontend);
- cDynamicDevice::AttachDevice(*cString::sprintf("/dev/dvb/adapter%d/frontend%d", Adapter, Frontend));
+ cDynamicDevice::AttachDevice(*devpath);
+ // or better attach later when all plugins are started?
+ //cDynamicDeviceProbe::QueueDynamicDeviceCommand(ddpcAttach, *devpath);
return true; // grab all dvbdevices
}
};