"\t-f\t\toutput data as the log grows"
#define losetup_trivial_usage \
- "[-od] LOOPDEVICE [FILE]\n"
+ "[-od] LOOPDEVICE [FILE]"
#define losetup_full_usage \
"Associate LOOPDEVICE with FILE, or display current association.\n\n" \
"Options:\n" \
switch(getopt(argc,argv, "do:")) {
case 'd':
/* detach takes exactly one argument */
- if(optind+1==argc && !del_loop(argv[optind])) return EXIT_SUCCESS;
+ if(optind+1!=argc) bb_show_usage();
+ if(!del_loop(argv[optind])) return EXIT_SUCCESS;
die_failed:
bb_perror_msg_and_die("%s",argv[optind]);