diff options
author | Jim Meyering <meyering@redhat.com> | 2009-08-10 19:10:14 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-08-13 14:45:34 +0200 |
commit | fc266e5ab8c4f013d0e473029c5e0b4cd32cca92 (patch) | |
tree | 05c951a357c89cfcb8dc5d6dcaed537698ac2ce1 /daemon/daemon.h | |
parent | ecd828beb250648541492a69a188a71305897e4e (diff) | |
download | libguestfs-fc266e5ab8c4f013d0e473029c5e0b4cd32cca92.tar.gz libguestfs-fc266e5ab8c4f013d0e473029c5e0b4cd32cca92.tar.xz libguestfs-fc266e5ab8c4f013d0e473029c5e0b4cd32cca92.zip |
s/NEED_ROOT_OR_IS_DEVICE/REQUIRE_ROOT_OR_RESOLVE_DEVICE/
Diffstat (limited to 'daemon/daemon.h')
-rw-r--r-- | daemon/daemon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/daemon.h b/daemon/daemon.h index 8bc63449..cbcab639 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); \ |