mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-01 09:51:22 -08:00
* dbusbind.c (xd_signature): Use strcat instead of sprintf.
This commit is contained in:
parent
413eee8181
commit
0ef5099349
2 changed files with 6 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue