dbus/dbus Makefile.am, 1.77, 1.78 dbus-address.c, 1.16, 1.17 dbus-auth-script.c, 1.17, 1.18 dbus-auth-script.h, 1.4, 1.5 dbus-bus.c, 1.52, 1.53 dbus-connection.c, 1.123, 1.124 dbus-errors.c, 1.29, 1.30 dbus-hash.c, 1.20, 1.21 dbus-hash.h, 1.15, 1.16 dbus-internals.c, 1.44, 1.45 dbus-internals.h, 1.55, 1.56 dbus-list.c, 1.23, 1.24 dbus-list.h, 1.14, 1.15 dbus-macros.h, 1.5, 1.6 dbus-marshal-recursive.c, 1.50, 1.51 dbus-marshal-validate.c, 1.22, 1.23 dbus-md5.c, 1.6, 1.7 dbus-memory.c, 1.26, 1.27 dbus-memory.h, 1.10, 1.11 dbus-message.c, 1.175, 1.176 dbus-server-protected.h, 1.19, 1.20 dbus-signature.c, 1.6, 1.7 dbus-signature.h, 1.4, 1.5 dbus-string-private.h, 1.6, 1.7 dbus-string.c, 1.69, 1.70 dbus-string.h, 1.39, 1.40 dbus-sysdeps.c, 1.102, 1.103 dbus-sysdeps.h, 1.49, 1.50 dbus-threads-internal.h, 1.1, 1.2 dbus-threads.c, 1.23, 1.24 dbus-threads.h, 1.8, 1.9 dbus-timeout.c, 1.15, 1.16 dbus-transport-protected.h, 1.17, 1.18 dbus-transport.c, 1.46, 1.47 dbus-watch.c, 1.18, 1.19 dbus.h, 1.21, 1.22

John Palmieri johnp at kemper.freedesktop.org
Thu Aug 3 13:34:39 PDT 2006


Update of /cvs/dbus/dbus/dbus
In directory kemper:/tmp/cvs-serv22390/dbus

Modified Files:
	Makefile.am dbus-address.c dbus-auth-script.c 
	dbus-auth-script.h dbus-bus.c dbus-connection.c dbus-errors.c 
	dbus-hash.c dbus-hash.h dbus-internals.c dbus-internals.h 
	dbus-list.c dbus-list.h dbus-macros.h dbus-marshal-recursive.c 
	dbus-marshal-validate.c dbus-md5.c dbus-memory.c dbus-memory.h 
	dbus-message.c dbus-server-protected.h dbus-signature.c 
	dbus-signature.h dbus-string-private.h dbus-string.c 
	dbus-string.h dbus-sysdeps.c dbus-sysdeps.h 
	dbus-threads-internal.h dbus-threads.c dbus-threads.h 
	dbus-timeout.c dbus-transport-protected.h dbus-transport.c 
	dbus-watch.c dbus.h 
Log Message:
* s/D-BUS/D-Bus/g


Index: Makefile.am
===================================================================
RCS file: /cvs/dbus/dbus/dbus/Makefile.am,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -d -r1.77 -r1.78
--- Makefile.am	14 Jul 2006 16:20:10 -0000	1.77
+++ Makefile.am	3 Aug 2006 20:34:36 -0000	1.78
@@ -110,7 +110,7 @@
 
 ### source code that is generic utility functionality used
 ### by the bus daemon or test apps, but is NOT included
-### in the D-BUS client library (all symbols in here 
+### in the D-Bus client library (all symbols in here 
 ### should be underscore-prefixed but don't really need 
 ### to be unless they move to DBUS_SHARED_SOURCES later)
 DBUS_UTIL_SOURCES=				\

Index: dbus-address.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-address.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- dbus-address.c	1 Aug 2005 18:59:02 -0000	1.16
+++ dbus-address.c	3 Aug 2006 20:34:36 -0000	1.17
@@ -32,7 +32,7 @@
 /**
  * @defgroup DBusAddressInternals Address parsing
  * @ingroup  DBusInternals
- * @brief Implementation of parsing addresses of D-BUS servers.
+ * @brief Implementation of parsing addresses of D-Bus servers.
  *
  * @{
  */
@@ -83,7 +83,7 @@
 /**
  * @defgroup DBusAddress Address parsing
  * @ingroup  DBus
- * @brief Parsing addresses of D-BUS servers.
+ * @brief Parsing addresses of D-Bus servers.
  *
  * @{
  */
@@ -177,7 +177,7 @@
 
 /**
  * Appends an escaped version of one string to another string,
- * using the D-BUS address escaping mechanism
+ * using the D-Bus address escaping mechanism
  *
  * @param escaped the string to append to
  * @param unescaped the string to escape
@@ -257,7 +257,7 @@
           if ((p + 2) > end)
             {
               dbus_set_error (error, DBUS_ERROR_BAD_ADDRESS,
-                              "In D-BUS address, percent character was not followed by two hex digits");
+                              "In D-Bus address, percent character was not followed by two hex digits");
               goto out;
             }
             
@@ -276,7 +276,7 @@
           if (hex_end != 2)
             {
               dbus_set_error (error, DBUS_ERROR_BAD_ADDRESS,
-                              "In D-BUS address, percent character was followed by characters other than hex digits");
+                              "In D-Bus address, percent character was followed by characters other than hex digits");
               goto out;
             }
         }
@@ -284,7 +284,7 @@
         {
           /* Error, should have been escaped */
           dbus_set_error (error, DBUS_ERROR_BAD_ADDRESS,
-                          "In D-BUS address, character '%c' should have been escaped\n",
+                          "In D-Bus address, character '%c' should have been escaped\n",
                           *p);
           goto out;
         }
@@ -308,7 +308,7 @@
  *
  * method:key=value,key=value;method:key=value
  *
- * See the D-BUS specification for complete docs on the format.
+ * See the D-Bus specification for complete docs on the format.
  * 
  * @param address the address.
  * @param entry return location to an array of entries.
@@ -524,7 +524,7 @@
 
 /**
  * Escapes the given string as a value in a key=value pair
- * for a D-BUS address.
+ * for a D-Bus address.
  *
  * @param value the unescaped value
  * @returns newly-allocated escaped value or #NULL if no memory
@@ -556,7 +556,7 @@
 
 /**
  * Unescapes the given string as a value in a key=value pair
- * for a D-BUS address.
+ * for a D-Bus address.
  *
  * @param value the escaped value
  * @param error error to set if the unescaping fails

Index: dbus-auth-script.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-auth-script.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- dbus-auth-script.c	26 Feb 2005 06:37:46 -0000	1.17
+++ dbus-auth-script.c	3 Aug 2006 20:34:36 -0000	1.18
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-auth-script.c Test DBusAuth using a special script file (internal to D-BUS implementation)
+/* dbus-auth-script.c Test DBusAuth using a special script file (internal to D-Bus implementation)
  * 
  * Copyright (C) 2003 Red Hat, Inc.
  *

Index: dbus-auth-script.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-auth-script.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- dbus-auth-script.h	9 Sep 2004 10:20:17 -0000	1.4
+++ dbus-auth-script.h	3 Aug 2006 20:34:36 -0000	1.5
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-auth-script.h Test DBusAuth using a special script file (internal to D-BUS implementation)
+/* dbus-auth-script.h Test DBusAuth using a special script file (internal to D-Bus implementation)
  * 
  * Copyright (C) 2003 Red Hat, Inc.
  *

Index: dbus-bus.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-bus.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -d -r1.52 -r1.53
--- dbus-bus.c	17 Jul 2006 17:44:07 -0000	1.52
+++ dbus-bus.c	3 Aug 2006 20:34:36 -0000	1.53
@@ -670,7 +670,7 @@
 /**
  * Asks the bus to assign the given name to this connection by invoking
  * the RequestName method on the bus. This method is fully documented
- * in the D-BUS specification. For quick reference, the flags and
+ * in the D-Bus specification. For quick reference, the flags and
  * result codes are discussed here, but the specification is the
  * canonical version of this information.
  *
@@ -797,7 +797,7 @@
 /**
  * Asks the bus to unassign the given name to this connection by invoking
  * the ReleaseName method on the bus. This method is fully documented
- * in the D-BUS specification.
+ * in the D-Bus specification.
  *
  * @param connection the connection
  * @param name the name to remove 
@@ -1047,7 +1047,7 @@
  * but that would require blocking always to determine
  * the return value.
  *
- * The AddMatch method is fully documented in the D-BUS 
+ * The AddMatch method is fully documented in the D-Bus 
  * specification. For quick reference, the format of the 
  * match rules is discussed here, but the specification 
  * is the canonical version of this information.

Index: dbus-connection.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-connection.c,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -d -r1.123 -r1.124
--- dbus-connection.c	22 Jul 2006 17:06:14 -0000	1.123
+++ dbus-connection.c	3 Aug 2006 20:34:36 -0000	1.124
@@ -105,7 +105,7 @@
  * dbus_connection_set_dispatch_status_function() allows
  * you to set a function to be used to monitor the dispatch status.
  *
- * If you're using GLib or Qt add-on libraries for D-BUS, there are
+ * If you're using GLib or Qt add-on libraries for D-Bus, there are
  * special convenience APIs in those libraries that hide
  * all the details of dispatch and watch/timeout monitoring.
  * For example, dbus_connection_setup_with_g_main().

Index: dbus-errors.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-errors.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- dbus-errors.c	17 Jul 2006 17:44:07 -0000	1.29
+++ dbus-errors.c	3 Aug 2006 20:34:36 -0000	1.30
@@ -111,7 +111,7 @@
  * Types and functions related to reporting errors.
  *
  *
- * In essence D-BUS error reporting works as follows:
+ * In essence D-Bus error reporting works as follows:
  *
  * @code
  * DBusError error;
@@ -124,7 +124,7 @@
  *   }
  * @endcode
  *
- * There are some rules. An error passed to a D-BUS function must
+ * There are some rules. An error passed to a D-Bus function must
  * always be unset; you can't pass in an error that's already set.  If
  * a function has a return code indicating whether an error occurred,
  * and also a #DBusError parameter, then the error will always be set
@@ -192,7 +192,7 @@
  * Assigns an error name and message to a DBusError.  Does nothing if
  * error is #NULL. The message may be NULL, which means a default
  * message will be deduced from the name. If the error name is unknown
- * to D-BUS the default message will be totally useless, though.
+ * to D-Bus the default message will be totally useless, though.
  *
  * @param error the error.
  * @param name the error name (not copied!!!)
@@ -298,7 +298,7 @@
  * Does nothing if error is #NULL.
  *
  * The format may be NULL, which means a default message will be
- * deduced from the name. If the error name is unknown to D-BUS the
+ * deduced from the name. If the error name is unknown to D-Bus the
  * default message will be totally useless, though.
  *
  * If no memory can be allocated for the error message, 

Index: dbus-hash.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-hash.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- dbus-hash.c	6 Mar 2006 19:06:45 -0000	1.20
+++ dbus-hash.c	3 Aug 2006 20:34:36 -0000	1.21
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-hash.c Generic hash table utility (internal to D-BUS implementation)
+/* dbus-hash.c Generic hash table utility (internal to D-Bus implementation)
  * 
  * Copyright (C) 2002  Red Hat, Inc.
  * Copyright (c) 1991-1993 The Regents of the University of California.
@@ -7,7 +7,7 @@
  * 
  * Hash table implementation based on generic/tclHash.c from the Tcl
  * source code. The original Tcl license applies to portions of the
- * code from tclHash.c; the Tcl license follows this standad D-BUS
+ * code from tclHash.c; the Tcl license follows this standad D-Bus 
  * license information.
  *
  * Licensed under the Academic Free License version 2.1

Index: dbus-hash.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-hash.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- dbus-hash.h	6 Mar 2006 19:06:45 -0000	1.15
+++ dbus-hash.h	3 Aug 2006 20:34:36 -0000	1.16
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-hash.h Generic hash table utility (internal to D-BUS implementation)
+/* dbus-hash.h Generic hash table utility (internal to D-Bus implementation)
  * 
  * Copyright (C) 2002  Red Hat, Inc.
  *

Index: dbus-internals.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-internals.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- dbus-internals.c	13 Feb 2005 20:23:30 -0000	1.44
+++ dbus-internals.c	3 Aug 2006 20:34:36 -0000	1.45
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-internals.c  random utility stuff (internal to D-BUS implementation)
+/* dbus-internals.c  random utility stuff (internal to D-Bus implementation)
  *
  * Copyright (C) 2002, 2003  Red Hat, Inc.
  *
@@ -33,8 +33,8 @@
 #include <stdlib.h>
 
 /**
- * @defgroup DBusInternals D-BUS internal implementation details
- * @brief Documentation useful when developing or debugging D-BUS itself.
+ * @defgroup DBusInternals D-Bus internal implementation details
+ * @brief Documentation useful when developing or debugging D-Bus itself.
  * 
  */
 
@@ -447,7 +447,7 @@
 /** String used in _dbus_return_if_fail macro */
 const char _dbus_return_if_fail_warning_format[] =
 "%lu: arguments to %s() were incorrect, assertion \"%s\" failed in file %s line %d.\n"
-"This is normally a bug in some application using the D-BUS library.\n";
+"This is normally a bug in some application using the D-Bus library.\n";
 #endif
 
 #ifndef DBUS_DISABLE_ASSERT

Index: dbus-internals.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-internals.h,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- dbus-internals.h	26 Feb 2005 06:37:46 -0000	1.55
+++ dbus-internals.h	3 Aug 2006 20:34:36 -0000	1.56
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-internals.h  random utility stuff (internal to D-BUS implementation)
+/* dbus-internals.h  random utility stuff (internal to D-Bus implementation)
  *
  * Copyright (C) 2002, 2003  Red Hat, Inc.
  *

Index: dbus-list.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-list.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- dbus-list.c	1 Dec 2005 00:07:20 -0000	1.23
+++ dbus-list.c	3 Aug 2006 20:34:36 -0000	1.24
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-list.c Generic linked list utility (internal to D-BUS implementation)
+/* dbus-list.c Generic linked list utility (internal to D-Bus implementation)
  * 
  * Copyright (C) 2002  Red Hat, Inc.
  *

Index: dbus-list.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-list.h,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- dbus-list.h	9 Sep 2004 10:20:17 -0000	1.14
+++ dbus-list.h	3 Aug 2006 20:34:36 -0000	1.15
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-list.h Generic linked list utility (internal to D-BUS implementation)
+/* dbus-list.h Generic linked list utility (internal to D-Bus implementation)
  * 
  * Copyright (C) 2002, 2003 Red Hat, Inc.
  *

Index: dbus-macros.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-macros.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- dbus-macros.h	19 Dec 2005 22:06:24 -0000	1.5
+++ dbus-macros.h	3 Aug 2006 20:34:36 -0000	1.6
@@ -64,14 +64,14 @@
 /**
  * @def DBUS_BEGIN_DECLS
  *
- * Macro used prior to declaring functions in the D-BUS header
+ * Macro used prior to declaring functions in the D-Bus header
  * files. Expands to "extern "C"" when using a C++ compiler,
  * and expands to nothing when using a C compiler.
  */
 /**
  * @def DBUS_END_DECLS
  *
- * Macro used after declaring functions in the D-BUS header
+ * Macro used after declaring functions in the D-Bus header
  * files. Expands to "}" when using a C++ compiler,
  * and expands to nothing when using a C compiler.
  */

Index: dbus-marshal-recursive.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-marshal-recursive.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- dbus-marshal-recursive.c	11 May 2005 18:07:22 -0000	1.50
+++ dbus-marshal-recursive.c	3 Aug 2006 20:34:36 -0000	1.51
@@ -1441,7 +1441,7 @@
  * type and value strings and set_basic would be a method on that
  * object... this would also make DBusTypeReader the same thing as
  * DBusTypeMark. But since DBusMessage is effectively that object for
- * D-BUS it doesn't seem worth creating some random object.)
+ * D-Bus it doesn't seem worth creating some random object.)
  *
  * @todo optimize this by only rewriting until the old and new values
  * are at the same alignment. Frequently this should result in only
@@ -1564,7 +1564,7 @@
 
 /**
  * Initialize a write iterator, which is used to write out values in
- * serialized D-BUS format.
+ * serialized D-Bus format.
  *
  * The type_pos passed in is expected to be inside an already-valid,
  * though potentially empty, type signature. This means that the byte

Index: dbus-marshal-validate.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-marshal-validate.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- dbus-marshal-validate.c	17 Jul 2006 17:44:07 -0000	1.22
+++ dbus-marshal-validate.c	3 Aug 2006 20:34:36 -0000	1.23
@@ -693,7 +693,7 @@
 
 /**
  * Checks that the given range of the string is a valid object path
- * name in the D-BUS protocol. Part of the validation ensures that
+ * name in the D-Bus protocol. Part of the validation ensures that
  * the object path contains only ASCII.
  *
  * @todo this is inconsistent with most of DBusString in that
@@ -761,7 +761,7 @@
 
 /**
  * Checks that the given range of the string is a valid interface name
- * in the D-BUS protocol. This includes a length restriction and an
+ * in the D-Bus protocol. This includes a length restriction and an
  * ASCII subset, see the specification.
  *
  * @todo this is inconsistent with most of DBusString in that
@@ -837,7 +837,7 @@
 
 /**
  * Checks that the given range of the string is a valid member name
- * in the D-BUS protocol. This includes a length restriction, etc.,
+ * in the D-Bus protocol. This includes a length restriction, etc.,
  * see the specification.
  *
  * @todo this is inconsistent with most of DBusString in that
@@ -898,7 +898,7 @@
 
 /**
  * Checks that the given range of the string is a valid error name
- * in the D-BUS protocol. This includes a length restriction, etc.,
+ * in the D-Bus protocol. This includes a length restriction, etc.,
  * see the specification.
  *
  * @todo this is inconsistent with most of DBusString in that
@@ -939,7 +939,7 @@
 
 /**
  * Checks that the given range of the string is a valid bus name in
- * the D-BUS protocol. This includes a length restriction, etc., see
+ * the D-Bus protocol. This includes a length restriction, etc., see
  * the specification.
  *
  * @todo this is inconsistent with most of DBusString in that
@@ -1039,7 +1039,7 @@
 
 /**
  * Checks that the given range of the string is a valid message type
- * signature in the D-BUS protocol.
+ * signature in the D-Bus protocol.
  *
  * @todo this is inconsistent with most of DBusString in that
  * it allows a start,len range that extends past the string end.

Index: dbus-md5.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-md5.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- dbus-md5.c	31 Mar 2003 20:56:29 -0000	1.6
+++ dbus-md5.c	3 Aug 2006 20:34:36 -0000	1.7
@@ -54,7 +54,7 @@
  * The implementation of MD5 (see http://www.ietf.org/rfc/rfc1321.txt).
  * This MD5 implementation was written by L. Peter Deutsch and
  * is not derived from the RSA reference implementation in the
- * RFC. The version included in D-BUS comes from the Ghostscript
+ * RFC. The version included in D-Bus comes from the Ghostscript
  * 7.05 distribution.
  *
  * @{

Index: dbus-memory.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-memory.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- dbus-memory.c	16 Jan 2005 22:13:34 -0000	1.26
+++ dbus-memory.c	3 Aug 2006 20:34:36 -0000	1.27
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-memory.c  D-BUS memory handling
+/* dbus-memory.c  D-Bus memory handling
  *
  * Copyright (C) 2002, 2003  Red Hat Inc.
  *
@@ -741,14 +741,14 @@
  */
 
 /**
- * The D-BUS library keeps some internal global variables, for example
+ * The D-Bus library keeps some internal global variables, for example
  * to cache the username of the current process.  This function is
  * used to free these global variables.  It is really useful only for
  * leak-checking cleanliness and the like. WARNING: this function is
  * NOT thread safe, it must be called while NO other threads are using
- * D-BUS. You cannot continue using D-BUS after calling this function,
+ * D-Bus. You cannot continue using D-Bus after calling this function,
  * as it does things like free global mutexes created by
- * dbus_threads_init(). To use a D-BUS function after calling
+ * dbus_threads_init(). To use a D-Bus function after calling
  * dbus_shutdown(), you have to start over from scratch, e.g. calling
  * dbus_threads_init() again.
  */

Index: dbus-memory.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-memory.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- dbus-memory.h	9 Sep 2004 10:20:17 -0000	1.10
+++ dbus-memory.h	3 Aug 2006 20:34:36 -0000	1.11
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-memory.h  D-BUS memory handling
+/* dbus-memory.h  D-Bus memory handling
  *
  * Copyright (C) 2002  Red Hat Inc.
  *

Index: dbus-message.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-message.c,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- dbus-message.c	16 Feb 2006 00:43:41 -0000	1.175
+++ dbus-message.c	3 Aug 2006 20:34:36 -0000	1.176
@@ -769,7 +769,7 @@
  * Constructs a new message to invoke a method on a remote
  * object. Returns #NULL if memory can't be allocated for the
  * message. The destination may be #NULL in which case no destination
- * is set; this is appropriate when using D-BUS in a peer-to-peer
+ * is set; this is appropriate when using D-Bus in a peer-to-peer
  * context (no message bus). The interface may be #NULL, which means
  * that if multiple methods with the given name exist it is undefined
  * which one will be invoked.
@@ -2871,7 +2871,7 @@
  * interface and member fields.  If the message is not
  * #DBUS_MESSAGE_TYPE_METHOD_CALL, or has a different interface or
  * member field, returns #FALSE. If the interface field is missing,
- * then it will be assumed equal to the provided interface.  The D-BUS
+ * then it will be assumed equal to the provided interface.  The D-Bus
  * protocol allows method callers to leave out the interface name.
  *
  * @param message the message
@@ -3684,7 +3684,7 @@
 
 /**
  * Utility function to convert a machine-readable (not translated)
- * string into a D-BUS message type.
+ * string into a D-Bus message type.
  *
  * @code
  *   "method_call"    -> DBUS_MESSAGE_TYPE_METHOD_CALL
@@ -3711,7 +3711,7 @@
 }
 
 /**
- * Utility function to convert a D-BUS message type into a
+ * Utility function to convert a D-Bus message type into a
  * machine-readable string (not translated).
  *
  * @code

Index: dbus-server-protected.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-server-protected.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- dbus-server-protected.h	26 Feb 2005 06:37:46 -0000	1.19
+++ dbus-server-protected.h	3 Aug 2006 20:34:36 -0000	1.20
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-server-protected.h Used by subclasses of DBusServer object (internal to D-BUS implementation)
+/* dbus-server-protected.h Used by subclasses of DBusServer object (internal to D-Bus implementation)
  *
  * Copyright (C) 2002  Red Hat Inc.
  *

Index: dbus-signature.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-signature.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- dbus-signature.c	10 Feb 2006 22:36:57 -0000	1.6
+++ dbus-signature.c	3 Aug 2006 20:34:36 -0000	1.7
@@ -37,7 +37,7 @@
 /**
  * @defgroup DBusSignature Type signature parsing
  * @ingroup  DBus
- * @brief Parsing D-BUS type signatures
+ * @brief Parsing D-Bus type signatures
  * @{
  */
 

Index: dbus-signature.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-signature.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- dbus-signature.h	25 Feb 2006 18:34:12 -0000	1.4
+++ dbus-signature.h	3 Aug 2006 20:34:36 -0000	1.5
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-signatures.h utility functions for D-BUS types
+/* dbus-signatures.h utility functions for D-Bus types
  *
  * Copyright (C) 2005 Red Hat Inc.
  *

Index: dbus-string-private.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-string-private.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- dbus-string-private.h	28 Jan 2005 03:06:55 -0000	1.6
+++ dbus-string-private.h	3 Aug 2006 20:34:36 -0000	1.7
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-string-private.h String utility class (internal to D-BUS implementation)
+/* dbus-string-private.h String utility class (internal to D-Bus implementation)
  * 
  * Copyright (C) 2002, 2003  Red Hat, Inc.
  *

Index: dbus-string.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-string.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- dbus-string.c	16 Feb 2006 00:43:41 -0000	1.69
+++ dbus-string.c	3 Aug 2006 20:34:36 -0000	1.70
@@ -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_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 @@
         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 ...

Index: dbus-string.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-string.h,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- dbus-string.h	11 Feb 2005 03:37:03 -0000	1.39
+++ dbus-string.h	3 Aug 2006 20:34:36 -0000	1.40
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-string.h String utility class (internal to D-BUS implementation)
+/* dbus-string.h String utility class (internal to D-Bus implementation)
  * 
  * Copyright (C) 2002, 2003 Red Hat, Inc.
  *

Index: dbus-sysdeps.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-sysdeps.c,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -d -r1.102 -r1.103
--- dbus-sysdeps.c	30 May 2006 15:34:10 -0000	1.102
+++ dbus-sysdeps.c	3 Aug 2006 20:34:36 -0000	1.103
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-sysdeps.c Wrappers around system/libc features (internal to D-BUS implementation)
+/* dbus-sysdeps.c Wrappers around system/libc features (internal to D-Bus implementation)
  * 
  * Copyright (C) 2002, 2003  Red Hat, Inc.
  * Copyright (C) 2003 CodeFactory AB
@@ -2653,7 +2653,7 @@
 /**
  * Sets the file descriptor to be close
  * on exec. Should be called for all file
- * descriptors in D-BUS code.
+ * descriptors in D-Bus code.
  *
  * @param fd the file descriptor
  */
@@ -2876,7 +2876,7 @@
 
   free (syms);
 #else
-  _dbus_verbose ("  D-BUS not compiled with backtrace support\n");
+  _dbus_verbose ("  D-Bus not compiled with backtrace support\n");
 #endif
 }
 #endif /* asserts or tests enabled */

Index: dbus-sysdeps.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-sysdeps.h,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- dbus-sysdeps.h	8 Jul 2005 14:36:22 -0000	1.49
+++ dbus-sysdeps.h	3 Aug 2006 20:34:36 -0000	1.50
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-sysdeps.h Wrappers around system/libc features (internal to D-BUS implementation)
+/* dbus-sysdeps.h Wrappers around system/libc features (internal to D-Bus implementation)
  * 
  * Copyright (C) 2002, 2003  Red Hat, Inc.
  * Copyright (C) 2003 CodeFactory AB

Index: dbus-threads-internal.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-threads-internal.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- dbus-threads-internal.h	24 Feb 2005 19:00:57 -0000	1.1
+++ dbus-threads-internal.h	3 Aug 2006 20:34:36 -0000	1.2
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-threads-internal.h  D-BUS thread primitives
+/* dbus-threads-internal.h  D-Bus thread primitives
  *
  * Copyright (C) 2002, 2005 Red Hat Inc.
  *

Index: dbus-threads.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-threads.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- dbus-threads.c	26 Feb 2005 06:37:46 -0000	1.23
+++ dbus-threads.c	3 Aug 2006 20:34:36 -0000	1.24
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-threads.h  D-BUS threads handling
+/* dbus-threads.h  D-Bus threads handling
  *
  * Copyright (C) 2002, 2003 Red Hat Inc.
  *
@@ -289,10 +289,10 @@
 /**
  * 
  * Initializes threads. If this function is not called,
- * the D-BUS library will not lock any data structures.
- * If it is called, D-BUS will do locking, at some cost
+ * the D-Bus library will not lock any data structures.
+ * If it is called, D-Bus will do locking, at some cost
  * in efficiency. Note that this function must be called
- * BEFORE using any other D-BUS functions.
+ * BEFORE using any other D-Bus functions.
  *
  * This function may be called more than once, as long
  * as you pass in the same functions each time. If it's

Index: dbus-threads.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-threads.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- dbus-threads.h	24 Feb 2005 18:37:16 -0000	1.8
+++ dbus-threads.h	3 Aug 2006 20:34:36 -0000	1.9
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-threads.h  D-BUS threads handling
+/* dbus-threads.h  D-Bus threads handling
  *
  * Copyright (C) 2002  Red Hat Inc.
  *
@@ -67,7 +67,7 @@
 } DBusThreadFunctionsMask;
 
 /**
- * Functions that must be implemented to make the D-BUS
+ * Functions that must be implemented to make the D-Bus
  * library thread-aware. 
  */
 typedef struct

Index: dbus-timeout.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-timeout.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- dbus-timeout.c	11 Sep 2005 10:02:47 -0000	1.15
+++ dbus-timeout.c	3 Aug 2006 20:34:36 -0000	1.16
@@ -142,7 +142,7 @@
  * Changes the timeout's enabled-ness. Note that you should use
  * _dbus_connection_toggle_timeout_unlocked() etc. instead, if
  * the timeout is passed out to an application main loop.
- * i.e. you can't use this function in the D-BUS library, it's
+ * i.e. you can't use this function in the D-Bus library, it's
  * only used in the message bus daemon implementation.
  *
  * @param timeout the timeout

Index: dbus-transport-protected.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-transport-protected.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- dbus-transport-protected.h	5 May 2005 22:02:11 -0000	1.17
+++ dbus-transport-protected.h	3 Aug 2006 20:34:36 -0000	1.18
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-transport-protected.h Used by subclasses of DBusTransport object (internal to D-BUS implementation)
+/* dbus-transport-protected.h Used by subclasses of DBusTransport object (internal to D-Bus implementation)
  *
  * Copyright (C) 2002, 2004  Red Hat Inc.
  *

Index: dbus-transport.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-transport.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- dbus-transport.c	5 May 2005 22:02:11 -0000	1.46
+++ dbus-transport.c	3 Aug 2006 20:34:36 -0000	1.47
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-transport.c DBusTransport object (internal to D-BUS implementation)
+/* dbus-transport.c DBusTransport object (internal to D-Bus implementation)
  *
  * Copyright (C) 2002, 2003  Red Hat Inc.
  *

Index: dbus-watch.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-watch.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- dbus-watch.c	26 Nov 2004 01:53:13 -0000	1.18
+++ dbus-watch.c	3 Aug 2006 20:34:36 -0000	1.19
@@ -566,7 +566,7 @@
 
 
 /**
- * Called to notify the D-BUS library when a previously-added watch is
+ * Called to notify the D-Bus library when a previously-added watch is
  * ready for reading or writing, or has an exception such as a hangup.
  * 
  * If this function returns #FALSE, then the file descriptor may still

Index: dbus.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus.h,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- dbus.h	25 Feb 2006 18:34:12 -0000	1.21
+++ dbus.h	3 Aug 2006 20:34:36 -0000	1.22
@@ -27,7 +27,7 @@
 #define DBUS_INSIDE_DBUS_H 1
 
 #ifndef DBUS_API_SUBJECT_TO_CHANGE
-#error "Please define DBUS_API_SUBJECT_TO_CHANGE to acknowledge your understanding that D-BUS hasn't reached 1.0 and is subject to protocol and API churn. See the README for a full explanation."
+#error "Please define DBUS_API_SUBJECT_TO_CHANGE to acknowledge your understanding that D-Bus hasn't reached 1.0 and is subject to protocol and API churn. See the README for a full explanation."
 #endif
 
 #include <dbus/dbus-arch-deps.h>
@@ -48,11 +48,11 @@
 #undef DBUS_INSIDE_DBUS_H
 
 /**
- * @defgroup DBus D-BUS low-level public API
- * @brief The low-level public API of the D-BUS library
+ * @defgroup DBus D-Bus low-level public API
+ * @brief The low-level public API of the D-Bus library
  *
  * libdbus provides a low-level API intended primarily for use by
- * bindings to specific object systems and languages.  D-BUS is most
+ * bindings to specific object systems and languages.  D-Bus is most
  * convenient when used with the GLib bindings, Python bindings, Qt
  * bindings, Mono bindings, and so forth.  This low-level API has a
  * lot of complexity useful only for bindings.



More information about the dbus-commit mailing list