search for: new_hv

Displaying 2 results from an estimated 2 matches for "new_hv".

Did you mean: new_bv
2014 Jan 01
0
[PATCH] Allow ./configure --without-qemu.
...+ * by setting an environment variable or calling set_hv. + */ + g->hv = strdup ("false"); +#endif if (!g->hv) goto error; /* Get program name. */ @@ -467,8 +475,26 @@ guestfs__get_path (guestfs_h *g) int guestfs__set_qemu (guestfs_h *g, const char *qemu) { + char *new_hv; + + /* Only this deprecated set_qemu API supports using NULL as a + * parameter, to mean set it back to the default QEMU. The new + * set_hv API does not allow callers to do this. + */ + if (qemu == NULL) { +#ifdef QEMU + new_hv = safe_strdup (g, QEMU); +#else + error (g, _("co...
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.