1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

switch to single quotes rather than double for nameprefixes

This commit is contained in:
Alasdair Kergon 2008-06-06 19:07:47 +00:00
parent 0f4355d518
commit 9df5c6e987

View File

@ -845,7 +845,7 @@ int dm_report_output(struct dm_report *rh)
free(field_id); free(field_id);
if (!dm_pool_grow_object(rh->mem, "=\"", 2)) { if (!dm_pool_grow_object(rh->mem, "=\'", 2)) {
log_error("dm_report: Unable to extend output line"); log_error("dm_report: Unable to extend output line");
goto bad; goto bad;
} }
@ -886,7 +886,7 @@ int dm_report_output(struct dm_report *rh)
} }
if (rh->flags & DM_REPORT_OUTPUT_FIELD_NAME_PREFIX) if (rh->flags & DM_REPORT_OUTPUT_FIELD_NAME_PREFIX)
if (!dm_pool_grow_object(rh->mem, "\"", 1)) { if (!dm_pool_grow_object(rh->mem, "\'", 1)) {
log_error("dm_report: Unable to extend output line"); log_error("dm_report: Unable to extend output line");
goto bad; goto bad;
} }