Displaying 1 result from an estimated 1 matches for "c21525961".
2017 May 04
0
Re: [PATCH v1 1/2] appliance: search all types of appliances for each path separately
...> Signed-off-by: Pavel Butsykin <pbutsykin@virtuozzo.com>
> ---
> lib/appliance.c | 231 ++++++++++++++++++++++++++------------------------------
> 1 file changed, 108 insertions(+), 123 deletions(-)
>
> diff --git a/lib/appliance.c b/lib/appliance.c
> index f12918573..c21525961 100644
> --- a/lib/appliance.c
> +++ b/lib/appliance.c
> @@ -37,18 +37,23 @@
> #include "guestfs.h"
> #include "guestfs-internal.h"
>
> +typedef struct appliance_files {
> + char *kernel;
> + char *initrd;
> + char *image;
> +} appliance_f...