]> git.ipfire.org Git - thirdparty/libvirt.git/commit
maint: rename virBufferVSprintf to virBufferAsprintf
authorEric Blake <eblake@redhat.com>
Sat, 30 Apr 2011 16:34:49 +0000 (10:34 -0600)
committerEric Blake <eblake@redhat.com>
Thu, 5 May 2011 19:47:40 +0000 (13:47 -0600)
commit68ea80cfdd41bc3adbe70ac5d0a9c396c81690a3
treeee1b6b553cc2a70a92d378607747b1ac24474f1e
parent79b914e8f699ef7648b7b5d206ae413fb7642a9b
maint: rename virBufferVSprintf to virBufferAsprintf

We already have virAsprintf, so picking a similar name helps for
seeing a similar purpose.  Furthermore, the prefix V before printf
generally implies 'va_list', even though this variant was '...', and
the old name got in the way of adding a new va_list version.

global rename performed with:

$ git grep -l virBufferVSprintf \
  | xargs -L1 sed -i 's/virBufferVSprintf/virBufferAsprintf/g'

then revert the changes in ChangeLog-old.
49 files changed:
HACKING
docs/api_extension/0008-support-new-xml.patch
docs/api_extension/0010-improve-vcpu-support-in-qemu-command-line.patch
docs/api_extension/0012-improve-vcpu-support-in-xen-command-line.patch
docs/hacking.html.in
docs/news.html.in
src/conf/capabilities.c
src/conf/cpu_conf.c
src/conf/domain_conf.c
src/conf/interface_conf.c
src/conf/network_conf.c
src/conf/node_device_conf.c
src/conf/nwfilter_conf.c
src/conf/nwfilter_params.c
src/conf/secret_conf.c
src/conf/storage_conf.c
src/conf/storage_encryption_conf.c
src/cpu/cpu_map.c
src/esx/esx_driver.c
src/esx/esx_vi.c
src/esx/esx_vi_types.c
src/libvirt_private.syms
src/network/bridge_driver.c
src/node_device/node_device_udev.c
src/nwfilter/nwfilter_ebiptables_driver.c
src/nwfilter/nwfilter_learnipaddr.c
src/openvz/openvz_driver.c
src/phyp/phyp_driver.c
src/qemu/qemu_command.c
src/qemu/qemu_domain.c
src/qemu/qemu_monitor.c
src/security/virt-aa-helper.c
src/uml/uml_conf.c
src/util/bitmap.c
src/util/buf.c
src/util/buf.h
src/util/conf.c
src/util/logging.c
src/util/sexpr.c
src/util/sysinfo.c
src/vmx/vmx.c
src/xen/xend_internal.c
src/xen/xm_internal.c
src/xenapi/xenapi_utils.c
src/xenxs/xen_sxpr.c
src/xenxs/xen_xm.c
tests/cputest.c
tests/virbuftest.c
tools/virsh.c