summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-string.c
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2006-08-03 20:34:36 +0000
committerJohn (J5) Palmieri <johnp@redhat.com>2006-08-03 20:34:36 +0000
commit7652304bff969afb3969603149bb385efe861fe8 (patch)
treebceb1c7e8fe5b390a48110d1ec9ca88cd4779f0d /dbus/dbus-string.c
parentbaf72e43951b1fefd23c7d246b76939e3c72fc14 (diff)
* s/D-BUS/D-Bus/g
Diffstat (limited to 'dbus/dbus-string.c')
-rw-r--r--dbus/dbus-string.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbus/dbus-string.c b/dbus/dbus-string.c
index 6bd3d57b..287fe1cc 100644
--- a/dbus/dbus-string.c
+++ b/dbus/dbus-string.c
@@ -1,5 +1,5 @@
/* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-string.c String utility class (internal to D-BUS implementation)
+/* dbus-string.c String utility class (internal to D-Bus implementation)
*
* Copyright (C) 2002, 2003, 2004, 2005 Red Hat, Inc.
*
@@ -2549,7 +2549,7 @@ _dbus_string_validate_utf8 (const DBusString *str,
_dbus_assert (len >= 0);
/* we are doing _DBUS_UNLIKELY() here which might be
- * dubious in a generic library like GLib, but in D-BUS
+ * dubious in a generic library like GLib, but in D-Bus
* we know we're validating messages and that it would
* only be evil/broken apps that would have invalid
* UTF-8. Also, this function seems to be a performance
@@ -2572,7 +2572,7 @@ _dbus_string_validate_utf8 (const DBusString *str,
break;
/* Special-case ASCII; this makes us go a lot faster in
- * D-BUS profiles where we are typically validating
+ * D-Bus profiles where we are typically validating
* function names and such. We have to know that
* all following checks will pass for ASCII though,
* comments follow ...