diff options
Diffstat (limited to 'swaponoff.c')
-rw-r--r-- | swaponoff.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/swaponoff.c b/swaponoff.c index e40d169dd..85f338932 100644 --- a/swaponoff.c +++ b/swaponoff.c | |||
@@ -48,10 +48,8 @@ static void swap_enable_disable(char *device) | |||
48 | else | 48 | else |
49 | status = swapoff(device); | 49 | status = swapoff(device); |
50 | 50 | ||
51 | if (status != 0) { | 51 | if (status != 0) |
52 | perror(applet_name); | 52 | perror_msg_and_die(applet_name); |
53 | exit(EXIT_FAILURE); | ||
54 | } | ||
55 | } | 53 | } |
56 | 54 | ||
57 | static void do_em_all() | 55 | static void do_em_all() |
@@ -59,10 +57,8 @@ static void do_em_all() | |||
59 | struct mntent *m; | 57 | struct mntent *m; |
60 | FILE *f = setmntent("/etc/fstab", "r"); | 58 | FILE *f = setmntent("/etc/fstab", "r"); |
61 | 59 | ||
62 | if (f == NULL) { | 60 | if (f == NULL) |
63 | perror("/etc/fstab"); | 61 | perror_msg_and_die("/etc/fstab"); |
64 | exit(FALSE); | ||
65 | } | ||
66 | while ((m = getmntent(f)) != NULL) { | 62 | while ((m = getmntent(f)) != NULL) { |
67 | if (strcmp(m->mnt_type, MNTTYPE_SWAP)==0) { | 63 | if (strcmp(m->mnt_type, MNTTYPE_SWAP)==0) { |
68 | swap_enable_disable(m->mnt_fsname); | 64 | swap_enable_disable(m->mnt_fsname); |