]> git.eshelyaron.com Git - emacs.git/commitdiff
* dbusbind.c (xd_signature): Use strcat instead of sprintf.
authorMichael Albinus <michael.albinus@gmx.de>
Tue, 30 Sep 2008 21:05:16 +0000 (21:05 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Tue, 30 Sep 2008 21:05:16 +0000 (21:05 +0000)
src/ChangeLog
src/dbusbind.c

index 2e9e11f6dd4f9d1b98fb2ba38774923a941ebdaa..8007e94832331b5bd3eb4db850b7f351867e983d 100644 (file)
@@ -1,3 +1,7 @@
+2008-09-30  Michael Albinus  <michael.albinus@gmx.de>
+
+       * dbusbind.c (xd_signature): Use strcat instead of sprintf.
+
 2008-09-30  Eli Zaretskii  <eliz@gnu.org>
 
        * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
index 22e64bf00420a7fa2da422ede00354e13c605cbf..7c61de7a4d9d3ce549654a98eea7ca8d30216445 100644 (file)
@@ -298,7 +298,7 @@ xd_signature (signature, dtype, parent_type, object)
          strcat (signature, x);
          elt = CDR_SAFE (XD_NEXT_VALUE (elt));
        }
-      sprintf (signature, "%s%c", signature, DBUS_STRUCT_END_CHAR);
+      strcat (signature, DBUS_STRUCT_END_CHAR_AS_STRING);
       break;
 
     case DBUS_TYPE_DICT_ENTRY:
@@ -335,7 +335,7 @@ xd_signature (signature, dtype, parent_type, object)
                             CAR_SAFE (CDR_SAFE (XD_NEXT_VALUE (elt))));
 
       /* Closing signature.  */
-      sprintf (signature, "%s%c", signature, DBUS_DICT_ENTRY_END_CHAR);
+      strcat (signature, DBUS_DICT_ENTRY_END_CHAR_AS_STRING);
       break;
 
     default: