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/file.c | |
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/file.c')
-rw-r--r-- | daemon/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/file.c b/daemon/file.c index 9cc324fb..2ba2aab7 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; |