mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
cat: Give a better error if the user specified no drives on command line.
This commit is contained in:
@@ -220,6 +220,10 @@ main (int argc, char *argv[])
|
||||
if (optind >= argc || argc - optind < 1)
|
||||
usage (EXIT_FAILURE);
|
||||
|
||||
/* User must have specified some drives. */
|
||||
if (drvs == NULL)
|
||||
usage (EXIT_FAILURE);
|
||||
|
||||
/* Add drives, inspect and mount. Note that inspector is always true,
|
||||
* and there is no -m option.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user