On Wed, Aug 12, 2009 at 06:52:45PM +0200, Jim Meyering wrote:
From: Jim Meyering <meyering(a)redhat.com>
---
daemon/daemon.h | 2 +-
daemon/file.c | 2 +-
daemon/upload.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/daemon/daemon.h b/daemon/daemon.h
index 8bc6344..cbcab63 100644
--- a/daemon/daemon.h
+++ b/daemon/daemon.h
@@ -171,7 +171,7 @@ extern void reply (xdrproc_t xdrp, char *ret);
* because we intend in future to make device parameters a distinct
* type from filenames.
*/
-#define NEED_ROOT_OR_IS_DEVICE(path,fail_stmt) \
+#define REQUIRE_ROOT_OR_RESOLVE_DEVICE(path,fail_stmt) \
do { \
if (strncmp ((path), "/dev/", 5) == 0) \
RESOLVE_DEVICE ((path), fail_stmt); \
diff --git a/daemon/file.c b/daemon/file.c
index 9cc324f..2ba2aab 100644
--- a/daemon/file.c
+++ b/daemon/file.c
@@ -391,7 +391,7 @@ do_file (char *path)
char *buf;
int len;
- NEED_ROOT_OR_IS_DEVICE (path, return NULL);
+ REQUIRE_ROOT_OR_RESOLVE_DEVICE (path, return NULL);
if (strncmp (path, "/dev/", 5) == 0)
buf = (char *) path;
diff --git a/daemon/upload.c b/daemon/upload.c
index 7815e23..5c1adaf 100644
--- a/daemon/upload.c
+++ b/daemon/upload.c
@@ -93,7 +93,7 @@ do_download (char *filename)
int fd, r, is_dev;
char buf[GUESTFS_MAX_CHUNK_SIZE];
- NEED_ROOT_OR_IS_DEVICE (filename, return -1);
+ REQUIRE_ROOT_OR_RESOLVE_DEVICE (filename, return -1);
is_dev = strncmp (filename, "/dev/", 5) == 0;
--
1.6.4.337.g5420e
ACK.
Rich.
--
Richard Jones, Emerging Technologies, Red Hat
http://et.redhat.com/~rjones
virt-top is 'top' for virtual machines. Tiny program with many
powerful monitoring features, net stats, disk stats, logging, etc.
http://et.redhat.com/~rjones/virt-top