search for: b54cf07

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

Did you mean: b52af07
2016 Mar 07
1
[PATCH] inspect: list applications with APK
...pplications2 to be able to parse the list of installed applications with the APK package manager (used on Alpine Linux). --- src/inspect-apps.c | 121 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) diff --git a/src/inspect-apps.c b/src/inspect-apps.c index b54cf07..78c32bf 100644 --- a/src/inspect-apps.c +++ b/src/inspect-apps.c @@ -49,6 +49,7 @@ static struct guestfs_application2_list *list_applications_rpm (guestfs_h *g, st #endif static struct guestfs_application2_list *list_applications_deb (guestfs_h *g, struct inspect_fs *fs); static struct guestfs_...
2015 Oct 05
2
[PATCH] Remove multiple hacks that only apply to RHEL 5.
...# Does this version of timeout have the -k option? (Not on RHEL 6) + if timeout -k 10s 10s true >/dev/null 2>&1; then + timeout="timeout --foreground -k $timeout_kill $timeout_period" fi fi diff --git a/src/inspect-apps.c b/src/inspect-apps.c index a7da1dc..b54cf07 100644 --- a/src/inspect-apps.c +++ b/src/inspect-apps.c @@ -30,12 +30,6 @@ #include <sys/endian.h> #endif -/* be32toh is usually a macro defined in <endian.h>, but it might be - * a function in some system so check both, and if neither is defined - * then define be32toh for RHEL 5....
2016 Mar 06
8
[PATCH 0/5] Use less stack.
Various changes/fixes to use smaller stack frames. Rich.
2016 Mar 07
2
[PATCH v2] Use less stack.
...cmd_name, const char *extra) { size_t len = 80 + strlen (cmd_name); - char status_string[len]; + CLEANUP_FREE char *status_string = safe_malloc (g, len); guestfs_int_exit_status_to_string (status, cmd_name, status_string, len); diff --git a/src/inspect-apps.c b/src/inspect-apps.c index b54cf07..71efa75 100644 --- a/src/inspect-apps.c +++ b/src/inspect-apps.c @@ -660,14 +660,11 @@ static void list_applications_windows_from_path (guestfs_h *g, struct guestfs_ap static struct guestfs_application2_list * list_applications_windows (guestfs_h *g, struct inspect_fs *fs) { - size_t len = str...