mirror of
https://github.com/sheumann/hush.git
synced 2024-12-26 10:32:02 +00:00
Cleanup patch from Tito.
This commit is contained in:
parent
5d38f5ba89
commit
bc3d4a175f
@ -31,12 +31,6 @@
|
|||||||
|
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
|
|
||||||
static int whichApp; /* default SWAPON_APP */
|
|
||||||
|
|
||||||
static const int SWAPON_APP = 0;
|
|
||||||
static const int SWAPOFF_APP = 1;
|
|
||||||
|
|
||||||
|
|
||||||
static int swap_enable_disable(const char *device)
|
static int swap_enable_disable(const char *device)
|
||||||
{
|
{
|
||||||
int status;
|
int status;
|
||||||
@ -53,7 +47,7 @@ static int swap_enable_disable(const char *device)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (whichApp == SWAPON_APP)
|
if (bb_applet_name[5] == 'n')
|
||||||
status = swapon(device, 0);
|
status = swapon(device, 0);
|
||||||
else
|
else
|
||||||
status = swapoff(device);
|
status = swapoff(device);
|
||||||
@ -62,6 +56,7 @@ static int swap_enable_disable(const char *device)
|
|||||||
bb_perror_msg("%s", device);
|
bb_perror_msg("%s", device);
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
/*printf("%s: %s\n", bb_applet_name, device);*/
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,38 +78,18 @@ static int do_em_all(void)
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define DO_ALL 1
|
||||||
|
|
||||||
extern int swap_on_off_main(int argc, char **argv)
|
extern int swap_on_off_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
if (bb_applet_name[5] == 'f') { /* "swapoff" */
|
unsigned long opt = bb_getopt_ulflags (argc, argv, "a");
|
||||||
whichApp = SWAPOFF_APP;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (argc != 2) {
|
if (argc != 2) {
|
||||||
goto usage_and_exit;
|
bb_show_usage();
|
||||||
}
|
}
|
||||||
argc--;
|
|
||||||
argv++;
|
if (opt & DO_ALL)
|
||||||
|
return do_em_all();
|
||||||
/* Parse any options */
|
|
||||||
while (**argv == '-') {
|
return swap_enable_disable(argv[1]);
|
||||||
while (*++(*argv))
|
|
||||||
switch (**argv) {
|
|
||||||
case 'a':
|
|
||||||
{
|
|
||||||
struct stat statBuf;
|
|
||||||
|
|
||||||
if (stat("/etc/fstab", &statBuf) < 0)
|
|
||||||
bb_error_msg_and_die("/etc/fstab file missing");
|
|
||||||
}
|
|
||||||
return do_em_all();
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
goto usage_and_exit;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return swap_enable_disable(*argv);
|
|
||||||
|
|
||||||
usage_and_exit:
|
|
||||||
bb_show_usage();
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user