summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Orlenko <zxteam@gmail.com>2010-10-14 17:32:15 +1100
committerAlexander Orlenko <zxteam@gmail.com>2010-10-14 17:32:15 +1100
commit825549a092dc8a0f3aeba7827b0c811032a4491b (patch)
tree2bb6b5d7e8d334c8c1036a5aa9cf6930b1c09156
parent72af572ddc0f795e8be43de4359a94934901b668 (diff)
downloadbluez-tools-825549a092dc8a0f3aeba7827b0c811032a4491b.tar.gz
fixed some messages
-rw-r--r--contrib/bluez-api-4.75-fixed/device-api.txt12
-rw-r--r--src/bt-adapter.c2
-rw-r--r--src/bt-agent.c2
-rw-r--r--src/bt-audio.c2
-rw-r--r--src/bt-device.c2
-rw-r--r--src/bt-input.c2
-rw-r--r--src/bt-monitor.c2
-rw-r--r--src/bt-network.c2
-rw-r--r--src/bt-obex.c4
-rw-r--r--src/bt-serial.c2
10 files changed, 16 insertions, 16 deletions
diff --git a/contrib/bluez-api-4.75-fixed/device-api.txt b/contrib/bluez-api-4.75-fixed/device-api.txt
index 5a73680..ab1875d 100644
--- a/contrib/bluez-api-4.75-fixed/device-api.txt
+++ b/contrib/bluez-api-4.75-fixed/device-api.txt
@@ -71,7 +71,7 @@ Methods dict GetProperties()
Possible errors: org.bluez.Error.NotConnected
- array{object} ListNodes() {deprecated} {unsupported_in_bluez}
+ array{object} ListNodes() {deprecated} {unimplemented}
Returns list of device node object paths.
@@ -79,7 +79,7 @@ Methods dict GetProperties()
org.bluez.Error.Failed
org.bluez.Error.OutOfMemory
- object CreateNode(string uuid) {unsupported_in_bluez}
+ object CreateNode(string uuid) {unimplemented}
Creates a persistent device node binding with a
remote device. The actual support for the specified
@@ -90,7 +90,7 @@ Methods dict GetProperties()
Possible errors: org.bluez.Error.InvalidArguments
org.bluez.Error.NotSupported
- void RemoveNode(object node) {unsupported_in_bluez}
+ void RemoveNode(object node) {unimplemented}
Removes a persistent device node binding.
@@ -108,11 +108,11 @@ Signals PropertyChanged(string name, variant value)
disconnection to a remote device has been requested.
The actual disconnection will happen 2 seconds later.
- NodeCreated(object node) {unsupported_in_bluez}
+ NodeCreated(object node) {unimplemented}
Parameter is object path of created device node.
- NodeRemoved(object node) {unsupported_in_bluez}
+ NodeRemoved(object node) {unimplemented}
Parameter is object path of removed device node.
@@ -179,7 +179,7 @@ Properties string Address [readonly]
emitted PropertyChanged signal will show the remote
name again.
- array{object} Nodes [readonly] {unsupported_in_bluez}
+ array{object} Nodes [readonly] {unimplemented}
List of device node object paths.
diff --git a/src/bt-adapter.c b/src/bt-adapter.c
index 9f18146..c7efa58 100644
--- a/src/bt-adapter.c
+++ b/src/bt-adapter.c
@@ -147,7 +147,7 @@ int main(int argc, char *argv[])
/* Check, that bluetooth daemon is running */
if (!intf_supported(BLUEZ_DBUS_NAME, MANAGER_DBUS_PATH, MANAGER_DBUS_INTERFACE)) {
- g_printerr("%s: BLUEZ service does not found\n", g_get_prgname());
+ g_printerr("%s: bluez service does not found\n", g_get_prgname());
g_printerr("Did you forget to run bluetoothd?\n");
exit(EXIT_FAILURE);
}
diff --git a/src/bt-agent.c b/src/bt-agent.c
index 5200478..0b52582 100644
--- a/src/bt-agent.c
+++ b/src/bt-agent.c
@@ -99,7 +99,7 @@ int main(int argc, char *argv[])
/* Check, that bluetooth daemon is running */
if (!intf_supported(BLUEZ_DBUS_NAME, MANAGER_DBUS_PATH, MANAGER_DBUS_INTERFACE)) {
- g_printerr("%s: BLUEZ service does not found\n", g_get_prgname());
+ g_printerr("%s: bluez service does not found\n", g_get_prgname());
g_printerr("Did you forget to run bluetoothd?\n");
exit(EXIT_FAILURE);
}
diff --git a/src/bt-audio.c b/src/bt-audio.c
index f841d02..5d9809f 100644
--- a/src/bt-audio.c
+++ b/src/bt-audio.c
@@ -101,7 +101,7 @@ int main(int argc, char *argv[])
/* Check, that bluetooth daemon is running */
if (!intf_supported(BLUEZ_DBUS_NAME, MANAGER_DBUS_PATH, MANAGER_DBUS_INTERFACE)) {
- g_printerr("%s: BLUEZ service does not found\n", g_get_prgname());
+ g_printerr("%s: bluez service does not found\n", g_get_prgname());
g_printerr("Did you forget to run bluetoothd?\n");
exit(EXIT_FAILURE);
}
diff --git a/src/bt-device.c b/src/bt-device.c
index e8b7dfb..ddf1211 100644
--- a/src/bt-device.c
+++ b/src/bt-device.c
@@ -304,7 +304,7 @@ int main(int argc, char *argv[])
/* Check, that bluetooth daemon is running */
if (!intf_supported(BLUEZ_DBUS_NAME, MANAGER_DBUS_PATH, MANAGER_DBUS_INTERFACE)) {
- g_printerr("%s: BLUEZ service does not found\n", g_get_prgname());
+ g_printerr("%s: bluez service does not found\n", g_get_prgname());
g_printerr("Did you forget to run bluetoothd?\n");
exit(EXIT_FAILURE);
}
diff --git a/src/bt-input.c b/src/bt-input.c
index 3915eb1..a0cb598 100644
--- a/src/bt-input.c
+++ b/src/bt-input.c
@@ -98,7 +98,7 @@ int main(int argc, char *argv[])
/* Check, that bluetooth daemon is running */
if (!intf_supported(BLUEZ_DBUS_NAME, MANAGER_DBUS_PATH, MANAGER_DBUS_INTERFACE)) {
- g_printerr("%s: BLUEZ service does not found\n", g_get_prgname());
+ g_printerr("%s: bluez service does not found\n", g_get_prgname());
g_printerr("Did you forget to run bluetoothd?\n");
exit(EXIT_FAILURE);
}
diff --git a/src/bt-monitor.c b/src/bt-monitor.c
index 8f6b888..7074ba2 100644
--- a/src/bt-monitor.c
+++ b/src/bt-monitor.c
@@ -439,7 +439,7 @@ int main(int argc, char *argv[])
/* Check, that bluetooth daemon is running */
if (!intf_supported(BLUEZ_DBUS_NAME, MANAGER_DBUS_PATH, MANAGER_DBUS_INTERFACE)) {
- g_printerr("%s: BLUEZ service does not found\n", g_get_prgname());
+ g_printerr("%s: bluez service does not found\n", g_get_prgname());
g_printerr("Did you forget to run bluetoothd?\n");
exit(EXIT_FAILURE);
}
diff --git a/src/bt-network.c b/src/bt-network.c
index b1a5561..ed994ea 100644
--- a/src/bt-network.c
+++ b/src/bt-network.c
@@ -130,7 +130,7 @@ int main(int argc, char *argv[])
/* Check, that bluetooth daemon is running */
if (!intf_supported(BLUEZ_DBUS_NAME, MANAGER_DBUS_PATH, MANAGER_DBUS_INTERFACE)) {
- g_printerr("%s: BLUEZ service does not found\n", g_get_prgname());
+ g_printerr("%s: bluez service does not found\n", g_get_prgname());
g_printerr("Did you forget to run bluetoothd?\n");
exit(EXIT_FAILURE);
}
diff --git a/src/bt-obex.c b/src/bt-obex.c
index 828e19e..bdaf582 100644
--- a/src/bt-obex.c
+++ b/src/bt-obex.c
@@ -193,14 +193,14 @@ int main(int argc, char *argv[])
/* Check, that bluetooth daemon is running */
if (!intf_supported(BLUEZ_DBUS_NAME, MANAGER_DBUS_PATH, MANAGER_DBUS_INTERFACE)) {
- g_printerr("%s: BLUEZ service does not found\n", g_get_prgname());
+ g_printerr("%s: bluez service does not found\n", g_get_prgname());
g_printerr("Did you forget to run bluetoothd?\n");
exit(EXIT_FAILURE);
}
/* Check, that obexd daemon is running */
if (!intf_supported(OBEXS_DBUS_NAME, OBEXMANAGER_DBUS_PATH, OBEXMANAGER_DBUS_INTERFACE)) {
- g_printerr("%s: OBEXD service does not found\n", g_get_prgname());
+ g_printerr("%s: obex service does not found\n", g_get_prgname());
g_printerr("Did you forget to run obexd?\n");
exit(EXIT_FAILURE);
}
diff --git a/src/bt-serial.c b/src/bt-serial.c
index d6322d1..160d525 100644
--- a/src/bt-serial.c
+++ b/src/bt-serial.c
@@ -116,7 +116,7 @@ int main(int argc, char *argv[])
/* Check, that bluetooth daemon is running */
if (!intf_supported(BLUEZ_DBUS_NAME, MANAGER_DBUS_PATH, MANAGER_DBUS_INTERFACE)) {
- g_printerr("%s: BLUEZ service does not found\n", g_get_prgname());
+ g_printerr("%s: bluez service does not found\n", g_get_prgname());
g_printerr("Did you forget to run bluetoothd?\n");
exit(EXIT_FAILURE);
}