mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
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.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user