Displaying 3 results from an estimated 3 matches for "guestfs___check_appliance_up".
2013 Dec 09
2
[PATCH] lib: fix newline in error output
See also RHBZ#923355.
---
src/actions-support.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/actions-support.c b/src/actions-support.c
index d0e3e67..00d8cdc 100644
--- a/src/actions-support.c
+++ b/src/actions-support.c
@@ -68,7 +68,7 @@ int
guestfs___check_appliance_up (guestfs_h *g, const char *caller)
{
if (g->state == CONFIG || g->state == LAUNCHING) {
- error (g, "%s: call launch before using this function\\n(in guestfish, don't forget to use the 'run' command)",
+ error (g, "%s: call launch before using this functio...
2013 Dec 09
0
Re: [PATCH] lib: fix newline in error output
...> ---
> src/actions-support.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/actions-support.c b/src/actions-support.c
> index d0e3e67..00d8cdc 100644
> --- a/src/actions-support.c
> +++ b/src/actions-support.c
> @@ -68,7 +68,7 @@ int
> guestfs___check_appliance_up (guestfs_h *g, const char *caller)
> {
> if (g->state == CONFIG || g->state == LAUNCHING) {
> - error (g, "%s: call launch before using this function\\n(in guestfish, don't forget to use the 'run' command)",
> + error (g, "%s: call launch befor...
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.