Index: source/ariba/utility/bootstrap/modules/bluetoothsdp/BluetoothSdp.cpp
===================================================================
--- source/ariba/utility/bootstrap/modules/bluetoothsdp/BluetoothSdp.cpp	(revision 5632)
+++ source/ariba/utility/bootstrap/modules/bluetoothsdp/BluetoothSdp.cpp	(revision 5633)
@@ -66,5 +66,6 @@
 BluetoothSdp::BluetoothSdp(BootstrapInformationCallback* _callback) :
 	BootstrapModule(_callback), scan_timer_(io_service_) {
-	srand( time(NULL) ), found(false);
+	srand( time(NULL) );
+	found = false;
 #ifdef HAVE_BLUETOOTH_BLUETOOTH_H
 
@@ -299,8 +300,9 @@
 		int nextscan = (rand() % 30) + 5;
 		logging_debug("next sdp scan in " << nextscan << " seconds");
-	}
-
-	scan_timer_.expires_from_now( boost::posix_time::seconds(nextscan) );
-	scan_timer_.async_wait( boost::bind(&BluetoothSdp::bt_scan, this) );
+
+
+		scan_timer_.expires_from_now( boost::posix_time::seconds(nextscan) );
+		scan_timer_.async_wait( boost::bind(&BluetoothSdp::bt_scan, this) );
+	}
 }
 
