* src/generator.ml: Change all `String "device"' to `Device "device"'.
[libguestfs.git] / daemon / upload.c
index 0f737af..5c1adaf 100644 (file)
@@ -1,5 +1,5 @@
 /* libguestfs - the guestfsd daemon
- * Copyright (C) 2009 Red Hat Inc. 
+ * Copyright (C) 2009 Red Hat Inc.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -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, -1);
+  REQUIRE_ROOT_OR_RESOLVE_DEVICE (filename, return -1);
 
   is_dev = strncmp (filename, "/dev/", 5) == 0;