Richard W.M. Jones
2009-Nov-02 14:33 UTC
[Libguestfs] [PATCH] examples/to-xml.c: Don't depend on Gnulib function.
-- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages. http://et.redhat.com/~rjones/libguestfs/ See what it can do: http://et.redhat.com/~rjones/libguestfs/recipes.html -------------- next part -------------->From 79658de25ba676a99a0b4acfb869bca8056c81bc Mon Sep 17 00:00:00 2001From: Richard Jones <rjones at redhat.com> Date: Mon, 2 Nov 2009 14:30:54 +0000 Subject: [PATCH] examples/to-xml.c: Don't depend on Gnulib function. Since this program is just an example, it shouldn't require the Gnulib c-ctype functions. --- examples/to-xml.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/to-xml.c b/examples/to-xml.c index e9ea063..6d0a1df 100644 --- a/examples/to-xml.c +++ b/examples/to-xml.c @@ -16,9 +16,9 @@ #include <stdint.h> #include <inttypes.h> #include <unistd.h> +#include <ctype.h> #include <guestfs.h> -#include "c-ctype.h" /* Note that if any API call fails, we can just exit. The * standard error handler will have printed the error message @@ -149,7 +149,7 @@ display_partitions (guestfs_h *g, const char *dev) * That's a limitation of sorts of the Linux kernel. (Actually, * we could do this if we add the kpartx program to libguestfs). */ - if (strncmp (dev, "/dev/sd", 7) != 0 || c_isdigit (dev[strlen(dev)-1])) { + if (strncmp (dev, "/dev/sd", 7) != 0 || isdigit (dev[strlen(dev)-1])) { printf ("<vm-image dev=\"%s\"/>\n", dev); return; } -- 1.6.5.rc2
Richard W.M. Jones
2009-Nov-03 12:07 UTC
[Libguestfs] [PATCH] examples/to-xml.c: Don't depend on Gnulib function.
ACKed after some discussion on IRC. I've pushed this. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming blog: http://rwmj.wordpress.com Fedora now supports 80 OCaml packages (the OPEN alternative to F#) http://cocan.org/getting_started_with_ocaml_on_red_hat_and_fedora
Seemingly Similar Threads
- [PATCH 0/9] FOR DISCUSSION ONLY: daemon error handling
- [PATCH 0/2] First part of fix for CVE-2010-3851
- [PATCH 0/9] Enhance virt-resize so it can really expand Linux and Windows guests
- [PATCH 0/3 VERSION 3 FOR DISCUSSION ONLY] FUSE support for libguestfs
- [PATCH 0/6] Various Java bindings fixes.