From a8c6c1c0a65df8baf248b60eb29d25a6fda7bcc0 Mon Sep 17 00:00:00 2001 From: Oliver Ruiz Dorantes Date: Sat, 19 Apr 2008 16:47:44 +0000 Subject: [PATCH] - Ask always for the remotename as we still dont have any kind of cache devices. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25052 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/bt_discovery.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/bt_discovery.cpp b/src/bin/bt_discovery.cpp index 90972f0d45..7cce3dfe09 100644 --- a/src/bin/bt_discovery.cpp +++ b/src/bin/bt_discovery.cpp @@ -80,7 +80,7 @@ DumpInfo(LocalDevice* device) for (int32 index = 0 ; index < dAgent->RetrieveDevices(0).CountItems(); index++ ) { RemoteDevice* rDevice = dAgent->RetrieveDevices(0).ItemAt(index); - printf("\t%s \t@ %s ...\n", rDevice->GetFriendlyName(false).String(), bdaddrUtils::ToString(rDevice->GetBluetoothAddress())); + printf("\t%s \t@ %s ...\n", rDevice->GetFriendlyName(true).String(), bdaddrUtils::ToString(rDevice->GetBluetoothAddress())); }