bb_opt_complementally for rdate applet. Add losed record to util-linux/Makefile.in for switch_root applet

This commit is contained in:
"Vladimir N. Oleynik" 2005-10-28 15:43:41 +00:00
parent aa87276bed
commit ea97282af1
2 changed files with 4 additions and 4 deletions

View File

@ -33,6 +33,7 @@ UTILLINUX-$(CONFIG_PIVOT_ROOT) +=pivot_root.o
UTILLINUX-$(CONFIG_RDATE) +=rdate.o
UTILLINUX-$(CONFIG_READPROFILE) +=readprofile.o
UTILLINUX-$(CONFIG_SWAPONOFF) +=swaponoff.o
UTILLINUX-$(CONFIG_SWITCH_ROOT) +=switch_root.o
UTILLINUX-$(CONFIG_UMOUNT) +=umount.o
libraries-y+=$(UTILLINUX_DIR)$(UTILLINUX_AR)

View File

@ -62,11 +62,10 @@ static time_t askremotedate(const char *host)
int rdate_main(int argc, char **argv)
{
time_t remote_time;
unsigned long flags;
unsigned long flags = bb_getopt_ulflags(argc, argv, "sp");
if (!flags || argc == optind)
bb_show_usage();
bb_opt_complementally = "-1";
flags = bb_getopt_ulflags(argc, argv, "sp");
remote_time = askremotedate(argv[optind]);