Richard W.M. Jones
2012-Mar-19 16:46 UTC
[Libguestfs] [PATCH] inspection: Set last errno to ENOTSUP when inspection APIs are not available.
From: "Richard W.M. Jones" <rjones at redhat.com> Previously there was no programmatic way to tell if inspection APIs were unavailable because they are not compiled in (because hivex isn't around). This contrasts with daemon APIs where the availability is covered by the guestfs_available API. Change the inspection APIs so that when they are not available, the last errno is set to ENOTSUP. (Note that ENOTSUP must be defined on all POSIX platforms). This allows programs to detect if they are using a version of libguestfs that was compiled without support for inspection, without having to parse error messages. --- src/inspect.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/inspect.c b/src/inspect.c index 60c7dd4..117f57a 100644 --- a/src/inspect.c +++ b/src/inspect.c @@ -542,7 +542,7 @@ guestfs__inspect_get_hostname (guestfs_h *g, const char *root) /* XXX These functions should be in an optgroup. */ #define NOT_IMPL(r) \ - error (g, _("inspection API not available since this version of libguestfs was compiled without the hivex library")); \ + guestfs_error_errno (g, ENOTSUP, _("inspection API not available since this version of libguestfs was compiled without the hivex library")); \ return r char ** -- 1.7.9.1
Possibly Parallel Threads
- [PATCH] lib: Require libmagic.
- [nbdkit PATCH 2/2] plugins: Permit ENOTSUP as synonym for EOPNOTSUPP
- [PATCH 2/4] daemon: fstrim: Turn "discard operation is not supported" into ENOTSUP.
- [PATCH] uuids: return ENOTSUP if could not set UUID for specific fs
- Re: [PATCH 2/4] daemon: fstrim: Turn "discard operation is not supported" into ENOTSUP.