[libvirt] [PATCH] qemu: Remove redundant slash in save directory path

Matthias Bolte matthias.bolte at googlemail.com
Sun Nov 7 12:18:11 UTC 2010


2010/11/5 Eric Blake <eblake at redhat.com>:
> On 11/05/2010 03:41 PM, Matthias Bolte wrote:
>> ---
>>  src/qemu/qemu_driver.c |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
>> index 4e590e3..2a84e5d 100644
>> --- a/src/qemu/qemu_driver.c
>> +++ b/src/qemu/qemu_driver.c
>> @@ -1773,7 +1773,7 @@ qemudStartup(int privileged) {
>>                        "%s/cache/libvirt/qemu", LOCAL_STATE_DIR) == -1)
>>              goto out_of_memory;
>>          if (virAsprintf(&qemu_driver->saveDir,
>> -                      "%s/lib/libvirt/qemu/save/", LOCAL_STATE_DIR) == -1)
>> +                      "%s/lib/libvirt/qemu/save", LOCAL_STATE_DIR) == -1)
>>              goto out_of_memory;
>>          if (virAsprintf(&qemu_driver->snapshotDir,
>>                          "%s/lib/libvirt/qemu/snapshot", LOCAL_STATE_DIR) == -1)
>
> ACK, it's harmless to keep the trailing slash, but consistent with the
> other directory strings in this function to remove it.

Thanks, pushed.

Matthias




More information about the libvir-list mailing list