search for: guestfs_impl_remove_drive

Displaying 4 results from an estimated 4 matches for "guestfs_impl_remove_drive".

2019 Sep 07
0
[PATCH] drives: Typo fix
...e same typo, but I think they get updated mechanically, so I didn't bother to change them. lib/drives.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/drives.c b/lib/drives.c index 82ef30093..5a8d29ab4 100644 --- a/lib/drives.c +++ b/lib/drives.c @@ -1064,7 +1064,7 @@ guestfs_impl_remove_drive (guestfs_h *g, const char *label) /** * Checkpoint and roll back drives, so that groups of drives can be - * added atomicly. Only used by L<guestfs(3)/guestfs_add_domain>. + * added atomically. Only used by L<guestfs(3)/guestfs_add_domain>. */ size_t guestfs_int_checkpoint_dri...
2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of local disk. Rich.
2017 Apr 04
1
[PATCH] Use Unicode single quotes ‘’ in place of short single quoted strings throughout.
...s_h *g, const char *filename, } if (!drv->disk_label) { - error (g, _("'label' is required when hotplugging drives")); + error (g, _("‘label’ is required when hotplugging drives")); free_drive_struct (drv); return -1; } @@ -1025,7 +1025,7 @@ guestfs_impl_remove_drive (guestfs_h *g, const char *label) if (drv->disk_label && STREQ (label, drv->disk_label)) goto found; } - error (g, _("disk with label '%s' not found"), label); + error (g, _("disk with label ‘%s’ not found"), label); return -1; found...
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers. These aren't valid for global names in C++. (http://stackoverflow.com/a/228797) These large but completely mechanical patches change the illegal identifiers to legal ones. Rich.